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_GetFontProperties - Get the properties associated with a font.

Availability

       This function is available since SDL_ttf 3.0.0.

SDL_ttf                                           SDL_ttf 3.2.2                         TTF_GetFontProperties(3)

Description

       The following read-write properties are provided by SDL:

       • TTF_PROP_FONT_OUTLINE_LINE_CAP_NUMBER :
         The FT_Stroker_LineCap value used when setting the font outline, defaults
         to FT_STROKER_LINECAP_ROUND .

       • TTF_PROP_FONT_OUTLINE_LINE_JOIN_NUMBER :
         The FT_Stroker_LineJoin value used when setting the font outline,
         defaults to FT_STROKER_LINEJOIN_ROUND .

       • TTF_PROP_FONT_OUTLINE_MITER_LIMIT_NUMBER :
         The FT_Fixed miter limit used when setting the font outline, defaults to
         0.

Function Parameters

font   the font to query.

Header File

       Defined in SDL3_ttf/SDL_ttf.h

Name

       TTF_GetFontProperties - Get the properties associated with a font.

Return Value

       Returns a valid property ID on success or 0 on failure; call SDL_GetError() for more information.

Synopsis

#include"SDL3_ttf/SDL_ttf.h"SDL_PropertiesIDTTF_GetFontProperties(TTF_Font*font);#defineTTF_PROP_FONT_OUTLINE_LINE_CAP_NUMBERSDL_ttf.font.outline.line_cap"#defineTTF_PROP_FONT_OUTLINE_LINE_JOIN_NUMBERSDL_ttf.font.outline.line_join"#defineTTF_PROP_FONT_OUTLINE_MITER_LIMIT_NUMBERSDL_ttf.font.outline.miter_limit"

Thread Safety

       It is safe to call this function from any thread.

See Also