setHinting method

void setHinting(
  1. int hinting
)

Set a font's current hinter setting.

This updates any TTF_Text objects using this font, and clears already-generated glyphs, if any, from the cache.

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 set a new hinter setting on. \param hinting the new hinter setting.

\threadsafety This function should be called on the thread that created the font.

\since This function is available since SDL_ttf 3.0.0.

\sa TTF_GetFontHinting

extern SDL_DECLSPEC void SDLCALL TTF_SetFontHinting(TTF_Font *font, int hinting)

Implementation

void setHinting(int hinting) {
  ttfSetFontHinting(this, hinting);
}