| 212 | inline void MarkGlyphReady(uint16_t glyphId) { m_readyGlyphs.emplace(glyphId); } |
| 213 | |
| 214 | inline bool IsGlyphReady(uint16_t glyphId) const { return m_readyGlyphs.find(glyphId) != m_readyGlyphs.end(); } |
| 215 | |
| 216 | std::string GetName() const { return std::string(m_fontFace->family_name) + ':' + m_fontFace->style_name; } |
| 217 |
no test coverage detected