(This function is part of SDL_ttf, a separate library from SDL.)

TTF_SetFontHinting

Set a font's current hinter setting.

Header File

Defined in <SDL3_ttf/SDL_ttf.h>

Syntax

void TTF_SetFontHinting(TTF_Font *font, TTF_HintingFlags hinting);

Function Parameters

TTF_Font * font the font to set a new hinter setting on.
TTF_HintingFlags hinting the new hinter setting.

Remarks

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:

Thread Safety

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

Version

This function is available since SDL_ttf 3.0.0.

See Also


CategoryAPI, CategoryAPIFunction, CategorySDLTTF