System/FFI/TrueType: Reduce memory pool size from 32MB to 8MB

The maximum allocated memory by stbtt_RenderText() has never exceeded
2MB during testing. 8MB ought to be enough for anybody :^)
This commit is contained in:
Alec Murphy 2025-04-20 10:09:58 -04:00
parent 000cf3cea2
commit d723c7d9df

View file

@ -1,4 +1,4 @@
U64 stbtt_heap = MAlloc(1048576 * 32);
U64 stbtt_heap = MAlloc(1024 << 13);
U64 stbtt_pos = 0;
U64 @stbtt_malloc(I64 size)