mirror of
https://github.com/vlang/v.git
synced 2025-08-03 09:47:15 -04:00
19 lines
264 B
V
19 lines
264 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) {
|
|
}
|