hasGlyph method
Check whether a glyph is provided by the font for a UNICODE codepoint.
\param font the font to query. \param ch the codepoint to check. \returns true if font provides a glyph for this character, false if not.
\threadsafety This function should be called on the thread that created the font.
\since This function is available since SDL_ttf 3.0.0.
extern SDL_DECLSPEC bool SDLCALL TTF_FontHasGlyph(TTF_Font *font, Uint32 ch)
Implementation
bool hasGlyph(int ch) {
return ttfFontHasGlyph(this, ch);
}