feat: new word processor features

This commit is contained in:
2026-03-27 07:55:46 +01:00
parent d0ceefd8ef
commit 8f118c7a0f
7 changed files with 1402 additions and 257 deletions
+2
View File
@@ -169,6 +169,8 @@ struct TrueTypeFont {
if (g->width > 0 && g->height > 0) {
g->bitmap = (uint8_t*)montauk::malloc(g->width * g->height);
if (!g->bitmap)
return g;
stbtt_MakeCodepointBitmap(&info, g->bitmap, g->width, g->height,
g->width, gc->scale, gc->scale, codepoint);
}