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

gg: draw_image,draw_rounded_rect placeholder fns

This commit is contained in:
Alexander Medvednikov 2020-06-07 15:20:32 +02:00
parent 9c8769503f
commit 8277c976a8

View File

@ -249,6 +249,14 @@ pub fn (ctx &Context) draw_line(x, y, x2, y2 f32, c gx.Color) {
sgl.end()
}
pub fn (ctx &Context) draw_image(x, y, width, height f32, image u32) {
}
pub fn (ctx &Context) draw_rounded_rect(x, y, width, height, radius f32, color gx.Color) {
}
pub fn (ctx &Context) draw_empty_rounded_rect(x, y, width, height, radius f32, border_color gx.Color) {
}
fn C.WaitMessage()