2020-01-16 20:45:47 +01:00
|
|
|
module fontstash
|
|
|
|
|
|
|
|
// Contructor and destructor.
|
|
|
|
fn C.fonsCreateInternal(params &C.FONSparams) &C.FONScontext
|
|
|
|
fn C.fonsDeleteInternal(s &C.FONScontext)
|
|
|
|
|
|
|
|
fn C.fonsSetErrorCallback(s &C.FONScontext, callback fn(uptr voidptr, error int, val int), uptr voidptr)
|
|
|
|
// Returns current atlas size.
|
|
|
|
fn C.fonsGetAtlasSize(s &C.FONScontext, width &int, height &int)
|
|
|
|
// Expands the atlas size.
|
|
|
|
fn C.fonsExpandAtlas(s &C.FONScontext, width int, height int) int
|
|
|
|
// Resets the whole stash.
|
|
|
|
fn C.fonsResetAtlas(s &C.FONScontext, width int, height int) int
|
|
|
|
|
|
|
|
// Add fonts
|
|
|
|
fn C.fonsGetFontByName(s &C.FONScontext, name byteptr) int
|
|
|
|
fn C.fonsAddFallbackFont(s &C.FONScontext, base int, fallback int) int
|
|
|
|
fn C.fonsAddFontMem(s &C.FONScontext, name byteptr, data byteptr, dataSize int, freeData int) int
|
|
|
|
|
|
|
|
// State handling
|
|
|
|
fn C.fonsPushState(s &C.FONScontext)
|
|
|
|
fn C.fonsPopState(s &C.FONScontext)
|
|
|
|
fn C.fonsClearState(s &C.FONScontext)
|
|
|
|
|
|
|
|
// State setting
|
|
|
|
fn C.fonsSetSize(s &C.FONScontext, size f32)
|
|
|
|
fn C.fonsSetColor(s &C.FONScontext, color u32)
|
|
|
|
fn C.fonsSetSpacing(s &C.FONScontext, spacing f32)
|
|
|
|
fn C.fonsSetBlur(s &C.FONScontext, blur f32)
|
|
|
|
fn C.fonsSetAlign(s &C.FONScontext, align int)
|
|
|
|
fn C.fonsSetFont(s &C.FONScontext, font int)
|
|
|
|
|
|
|
|
// Draw text
|
|
|
|
fn C.fonsDrawText(s &C.FONScontext, x f32, y f32, str byteptr, end byteptr) f32
|
|
|
|
|
|
|
|
// Measure text
|
|
|
|
fn C.fonsTextBounds(s &C.FONScontext, x f32, y f32, str byteptr, end byteptr, bounds &f32) f32
|
|
|
|
fn C.fonsLineBounds(s &C.FONScontext, y f32, miny &f32, maxy &f32)
|
|
|
|
fn C.fonsVertMetrics(s &C.FONScontext, ascender &f32, descender &f32, lineh &f32)
|
|
|
|
|
|
|
|
// Text iterator
|
|
|
|
fn C.fonsTextIterInit(s &C.FONScontext, iter &C.FONStextIter, x f32, y f32, str byteptr, end byteptr) int
|
|
|
|
fn C.fonsTextIterNext(s &C.FONScontext, iter &C.FONStextIter, quad &C.FONSquad) int
|
|
|
|
|
|
|
|
// Pull texture changes
|
|
|
|
fn C.fonsGetTextureData(s &C.FONScontext, width &int, height &int) byteptr
|
|
|
|
fn C.fonsValidateTexture(s &C.FONScontext, dirty &int) int
|
|
|
|
|
|
|
|
// Draws the stash texture for debugging
|
2020-01-22 21:34:38 +01:00
|
|
|
fn C.fonsDrawDebug(s &C.FONScontext, x f32, y f32)
|