v/vlib/sokol/sfons/sfons.v

26 lines
441 B
V
Raw Normal View History

2020-01-16 20:45:47 +01:00
module sfons
import fontstash
#flag -I fontstash/thirdparty
[inline]
pub fn sfons_create(width int, height int, flags int) &C.FONScontext {
return C.sfons_create(width, height, flags)
}
[inline]
pub fn sfons_destroy(ctx &C.FONScontext) {
C.sfons_destroy(ctx)
}
[inline]
pub fn sfons_rgba(r byte, g byte, b byte, a byte) u32 {
return C.sfons_rgba(r, g, b, a)
}
[inline]
pub fn sfons_flush(ctx &C.FONScontext) {
C.sfons_flush(ctx)
}