1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

make v build-examples work: part 1

This commit is contained in:
Alexander Medvednikov
2020-06-02 16:09:41 +02:00
parent 78f8a8aee6
commit 4e51867612
8 changed files with 20 additions and 20 deletions

View File

@@ -136,7 +136,7 @@ fn (state &AppState) render_font() {
C.fonsSetColor(state.fons, white)
dx = 50
dy = 350
line(dx - 10, dy, dx + 250, dy)
line(f32(dx - 10), f32(dy), f32(dx + 250), f32(dy))
C.fonsSetAlign(state.fons, C.FONS_ALIGN_LEFT | C.FONS_ALIGN_TOP)
dx = C.fonsDrawText(state.fons, dx, dy, c'Top', C.NULL)
dx += 10
@@ -150,7 +150,7 @@ fn (state &AppState) render_font() {
C.fonsDrawText(state.fons, dx, dy, c'Bottom', C.NULL)
dx = 150
dy = 400
line(dx, dy - 30, dx, dy + 80.0)
line(f32(dx), f32(dy - 30), f32(dx), f32(dy + 80.0))
C.fonsSetAlign(state.fons, C.FONS_ALIGN_LEFT | C.FONS_ALIGN_BASELINE)
C.fonsDrawText(state.fons, dx, dy, c'Left', C.NULL)
dy += 30