| 94 | bool GfxRenderer::isFontCacheScanning() const { return fontCacheManager_ && fontCacheManager_->isScanning(); } |
| 95 | |
| 96 | void GfxRenderer::insertFont(const int fontId, EpdFontFamily font) { |
| 97 | auto result = fontMap.insert({fontId, font}); |
| 98 | if (!result.second) { |
| 99 | LOG_ERR("GFX", "Font ID %d already registered, ignoring duplicate", fontId); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | // Translate logical (x,y) coordinates to physical panel coordinates based on current orientation |
| 104 | // This should always be inlined for better performance |
no outgoing calls
no test coverage detected