///////////////////////////////////////////////////////
| 274 | |
| 275 | //////////////////////////////////////////////////////////// |
| 276 | bool Font::hasGlyph(char32_t codePoint) const |
| 277 | { |
| 278 | return FT_Get_Char_Index(m_fontHandles ? m_fontHandles->face : nullptr, codePoint) != 0; |
| 279 | } |
| 280 | |
| 281 | |
| 282 | //////////////////////////////////////////////////////////// |