From f516a68cee032724d4dd6f50b665bc60d7dc0883 Mon Sep 17 00:00:00 2001 From: Alessandro Mauri <alemauri001@gmail.com> Date: Thu, 30 Jan 2025 22:27:24 +0100 Subject: [PATCH] correct font atlas size --- src/ugui_font.c3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ugui_font.c3 b/src/ugui_font.c3 index 546c7b9..762c9f3 100644 --- a/src/ugui_font.c3 +++ b/src/ugui_font.c3 @@ -39,7 +39,7 @@ struct Glyph { short adv, ox, oy; } -const uint FONT_CACHED = 512; +const uint FONT_CACHED = 128; def GlyphTable = map::HashMap(<Codepoint, Glyph>) @private; fault UgFontError { @@ -89,7 +89,7 @@ fn void! Font.load(&font, String name, ZString path, uint height, float scale) // TODO: allocate buffer based on FONT_CACHED and the size of a sample letter // like the letter 'A' - ushort size = (ushort)font.size*256; + ushort size = (ushort)font.size*(ushort)($$sqrt((float)FONT_CACHED)); font.atlas.new(font.id, ATLAS_GRAYSCALE, size, size)!; // preallocate the ASCII range