| 142 | } |
| 143 | |
| 144 | GlyphID SpriteFontCache::MapCharToGlyph(char32_t key, [[maybe_unused]] bool allow_fallback) |
| 145 | { |
| 146 | assert(IsPrintable(key)); |
| 147 | SpriteID sprite = GetUnicodeGlyph(this->fs, key); |
| 148 | if (sprite == 0) return 0; |
| 149 | return SPRITE_GLYPH | sprite; |
| 150 | } |
| 151 | |
| 152 | bool SpriteFontCache::GetDrawGlyphShadow() |
| 153 | { |
nothing calls this directly
no test coverage detected