TTF_SetFontHinting - Set a font's current hinter setting.
Contents
Availability
This function is available since SDL_ttf 3.0.0.
Description
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)
Function Parameters
font the font to set a new hinter setting on.
hinting
the new hinter setting.
Header File
Defined in SDL3_ttf/SDL_ttf.h
Name
TTF_SetFontHinting - Set a font's current hinter setting.
See Also
•(3), TTF_GetFontHinting(3) SDL_ttf SDL_ttf 3.2.2 TTF_SetFontHinting(3)
Synopsis
#include"SDL3_ttf/SDL_ttf.h"voidTTF_SetFontHinting(TTF_Font*font,TTF_HintingFlagshinting);
Thread Safety
This function should be called on the thread that created the font.
