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

examples: make v -prod build-examples pass without warnings/errors

This commit is contained in:
Delyan Angelov
2020-10-18 09:48:13 +03:00
parent 67ecc04580
commit 8b2e704741
9 changed files with 594 additions and 512 deletions

View File

@ -5,19 +5,21 @@ import gx
import os
const (
win_width = 600
win_width = 600
win_height = 300
)
struct App {
mut:
gg &gg.Context
gg &gg.Context
image gg.Image
}
fn main() {
mut app := &App{}
app.gg = gg.new_context(
mut app := &App{
gg: 0
}
app.gg = gg.new_context({
bg_color: gx.white
width: win_width
height: win_height
@ -27,13 +29,13 @@ fn main() {
frame_fn: frame
user_data: app
init_fn: init_images
)
})
app.image = app.gg.create_image(os.resource_abs_path('logo.png'))
app.gg.run()
}
fn init_images(mut app App) {
//app.image = gg.create_image('logo.png')
// app.image = gg.create_image('logo.png')
}
fn frame(app &App) {
@ -43,9 +45,9 @@ fn frame(app &App) {
}
fn (app &App) draw() {
//app.gg.draw_text_def(200,20, 'hello world!')
//app.gg.draw_text_def(300,300, 'привет')
// app.gg.draw_text_def(200,20, 'hello world!')
// app.gg.draw_text_def(300,300, 'привет')
app.gg.draw_rect(10, 10, 100, 30, gx.blue)
app.gg.draw_empty_rect(110, 150, 80, 40, gx.black)
app.gg.draw_image(230,30,app.image.width,app.image.height, app.image)
app.gg.draw_image(230, 30, app.image.width, app.image.height, app.image)
}