memononen / fontstash

Light-weight online font texture atlas builder
zlib License
692 stars 88 forks source link

Fix bug with scaling fallback fonts #41

Closed wheybags closed 5 years ago

wheybags commented 5 years ago

Example: fallback_font_bug

Code used to produce test image (modification of example.c):

fontBold = fonsAddFont(fs, "sans-bold", "../example/TitilliumWeb-Regular.ttf");
int fallback = fonsAddFont(fs, "sans-bold", "../example/NotoSans-Regular.ttf");
fonsAddFallbackFont(fs, fontBold, fallback);

...

fonsSetSize(fs, 72.0f);
fonsSetFont(fs, fontBold);
fonsSetColor(fs, white);
fonsDrawText(fs, 100, 100, "English Русский",NULL);