26 lines
441 B
V
26 lines
441 B
V
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)
|
|
}
|
|
|