ttfGetFontHinting function ttf

int ttfGetFontHinting(
  1. Pointer<TtfFont> font
)

Query a font's current FreeType hinter setting.

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 query. \returns the font's current hinter value, or TTF_HINTING_INVALID if the font is invalid.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL_ttf 3.0.0.

\sa TTF_SetFontHinting

extern SDL_DECLSPEC TTF_HintingFlags SDLCALL TTF_GetFontHinting(const TTF_Font *font)

Implementation

int ttfGetFontHinting(Pointer<TtfFont> font) {
  final ttfGetFontHintingLookupFunction = _libTtf
      .lookupFunction<
        Int32 Function(Pointer<TtfFont> font),
        int Function(Pointer<TtfFont> font)
      >('TTF_GetFontHinting');
  return ttfGetFontHintingLookupFunction(font);
}