TTF_HintingFlags - Hinting flags for TTF (TrueType Fonts)
Contents
Availability
This enum is available since SDL_ttf 3.0.0.
Description
This enum specifies the level of hinting to be applied to the font rendering. The hinting level
determines how much the font's outlines are adjusted for better alignment on the pixel grid.
Header File
Defined in SDL3_ttf/SDL_ttf.h
Name
TTF_HintingFlags - Hinting flags for TTF (TrueType Fonts)
See Also
•(3), TTF_SetFontHinting(3), •(3), TTF_GetFontHinting(3) SDL_ttf SDL_ttf 3.2.2 TTF_HintingFlags(3type)
Synopsis
#include"SDL3_ttf/SDL_ttf.h"typedefenumTTF_HintingFlags{TTF_HINTING_INVALID=-1,TTF_HINTING_NORMAL,/**<Normalhintingappliesstandardgrid-fitting.*/TTF_HINTING_LIGHT,/**<Lighthintingappliessubtleadjustmentstoimproverendering.*/TTF_HINTING_MONO,/**<Monochromehintingadjuststhefontforbetterrenderingatlowerresolutions.*/TTF_HINTING_NONE,/**<Nohinting,thefontisrenderedwithoutanygrid-fitting.*/TTF_HINTING_LIGHT_SUBPIXEL/**<Lighthintingwithsubpixelrenderingformoreprecisefontedges.*/}TTF_HintingFlags;