-
@nothings The quad is created and rendered as shown in this example code. The font I am using is this one (the "Regular" variant). Any idea what I might be doing wrong? The basic code flow I am using is:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Impossible to say without more info. The most likely issues would be in your code: either your packedchar printing code is wrong, or your render() code is wrong. Obviously the first thing to do is to simplfy and eliminate variables. Run stbtt_ in the same process and make sure that works. Write out the packedchars to a binary file with |
Beta Was this translation helpful? Give feedback.
Fixed! There were two issues:
align_to_integer
instbtt_GetPackedQuad
totrue
.Removing the cast and setting
align_to_integer
tofalse
seems to have fixed the issue.