FONSParams

Initial parameters for new FontStash.

struct FONSParams {
int width;
int height;
Flag flags;
void* userPtr;
bool function(void* uptr, int width, int height) nothrow @(trusted) @(nogc) renderCreate;
int function(void* uptr, int width, int height) nothrow @(trusted) @(nogc) renderResize;
void function(void* uptr, int* rect, const(ubyte)* data) nothrow @(trusted) @(nogc) renderUpdate;
void function(void* uptr) nothrow @(trusted) @(nogc) renderDelete;
}

See Also

Meta