Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

TTF_SetFontSDF - Enable Signed Distance Field rendering for a font.

Availability

       This function is available since SDL_ttf 3.0.0.

Description

       SDF  is  a  technique  that  helps  fonts look sharp even when scaling and rotating, and requires special
       shader support for display.

       This works with Blended APIs, and generates the raw signed distance values in the alpha  channel  of  the
       resulting texture.

       This updates any TTF_Text
        objects using this font, and clears already-generated glyphs, if any, from the cache.

Function Parameters

font   the font to set SDF support on.

       enabled
              true to enable SDF, false to disable.

Header File

       Defined in SDL3_ttf/SDL_ttf.h

Name

       TTF_SetFontSDF - Enable Signed Distance Field rendering for a font.

Return Value

       Returns true on success or false on failure; call SDL_GetError() for more information.

See Also

(3), TTF_GetFontSDF(3)

SDL_ttf                                           SDL_ttf 3.2.2                                TTF_SetFontSDF(3)

Synopsis

#include"SDL3_ttf/SDL_ttf.h"boolTTF_SetFontSDF(TTF_Font*font,boolenabled);

Thread Safety

       This function should be called on the thread that created the font.

See Also