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

19 lines
263 B
V

module gg
[heap]
pub struct Image {
pub mut:
id int
width int
height int
nr_channels int
ok bool
data voidptr
ext string
path string
}
pub fn (ctx &Context) draw_image_with_config(config DrawImageConfig) {
}