logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

TTF_GetFontHinting - Query a font's current FreeType hinter setting.

Availability

       This function is available since SDL_ttf 3.0.0.

Description

       The hinter setting is a single value:

       • TTF_HINTING_NORMALTTF_HINTING_LIGHTTTF_HINTING_MONOTTF_HINTING_NONETTF_HINTING_LIGHT_SUBPIXEL (available in
         SDL_ttf 3.0.0 and later)

Function Parameters

font   the font to query.

Header File

       Defined in SDL3_ttf/SDL_ttf.h

Name

       TTF_GetFontHinting - Query a font's current FreeType hinter setting.

Return Value

       ( TTF_HintingFlags ) Returns the font's current hinter value, or TTF_HINTING_INVALID
        if the font is invalid.

See Also

(3), TTF_SetFontHinting(3)

SDL_ttf                                           SDL_ttf 3.2.2                            TTF_GetFontHinting(3)

Synopsis

#include"SDL3_ttf/SDL_ttf.h"TTF_HintingFlagsTTF_GetFontHinting(constTTF_Font*font);

Thread Safety

       It is safe to call this function from any thread.

See Also