v/vlib/sokol/sfons/sfons_funcs.v

7 lines
209 B
V
Raw Normal View History

2020-01-16 20:45:47 +01:00
module sfons
fn C.sfons_create(width int, height int, flags int) &C.FONScontext
fn C.sfons_destroy(ctx &C.FONScontext)
2020-01-16 20:45:47 +01:00
fn C.sfons_rgba(r byte, g byte, b byte, a byte) u32
fn C.sfons_flush(ctx &C.FONScontext)