Smarter cache eviction

This commit is contained in:
jpirnay
2026-05-04 15:41:10 +02:00
parent 48aaf821a5
commit 95eafaecd1
3 changed files with 36 additions and 11 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
class FontDecompressor {
public:
static constexpr uint16_t MAX_PAGE_GLYPHS = 512;
static constexpr uint8_t MAX_PAGE_SLOTS = 8; // Provide enough slots for heavily stylized HTML pages
static constexpr uint8_t MAX_PAGE_SLOTS = 4; // One per font style (R/B/I/BI)
FontDecompressor() = default;
~FontDecompressor();