getHinting method

int getHinting()

Query a font's current FreeType hinter setting.

The hinter setting is a single value:

  • TTF_HINTING_NORMAL
  • TTF_HINTING_LIGHT
  • TTF_HINTING_MONO
  • TTF_HINTING_NONE
  • TTF_HINTING_LIGHT_SUBPIXEL (available in SDL_ttf 3.0.0 and later)

\param font the font to query. \returns the font's current hinter value.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL_ttf 3.0.0.

\sa TTF_SetFontHinting

extern SDL_DECLSPEC int SDLCALL TTF_GetFontHinting(const TTF_Font *font)

Implementation

int getHinting() {
  return ttfGetFontHinting(this);
}