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, or TTF_HINTING_INVALID if the font is invalid.

\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 TTF_HintingFlags SDLCALL TTF_GetFontHinting(const TTF_Font *font)

{@category ttf}

Implementation

int getHinting() => ttfGetFontHinting(this);