ttfSetFontHinting function
Set a font's current hinter setting.
Setting it clears already-generated glyphs, if any, from the cache.
The hinter setting is a single value:
TTF_HINTING_NORMALTTF_HINTING_LIGHTTTF_HINTING_MONOTTF_HINTING_NONETTF_HINTING_LIGHT_SUBPIXEL(available in SDL_ttf 2.0.18 and later)
\param font the font to set a new hinter setting on. \param hinting the new hinter setting.
\since This function is available since SDL_ttf 2.0.12.
\sa TTF_GetFontHinting
extern DECLSPEC void SDLCALL TTF_SetFontHinting(TTF_Font *font, int hinting)
Implementation
void ttfSetFontHinting(Pointer<TtfFont> font, int hinting) {
final ttfSetFontHintingLookupFunction = libSdl2Ttf.lookupFunction<
Void Function(Pointer<TtfFont> font, Int32 hinting),
void Function(Pointer<TtfFont> font, int hinting)>('TTF_SetFontHinting');
return ttfSetFontHintingLookupFunction(font, hinting);
}