Scroll to navigation

TTF_CloseFont(3) SDL_ttf3 FUNCTIONS TTF_CloseFont(3)

NAME

TTF_CloseFont - Dispose of a previously-created font.

SYNOPSIS

#include "SDL3_ttf/SDL_ttf.h"
void TTF_CloseFont(TTF_Font *font);

DESCRIPTION

Call this when done with a font. This function will free any resources associated with it. It is safe to call this function on NULL, for example on the result of a failed call to TTF_OpenFont ().

The font is not valid after being passed to this function. String pointers from functions that return information on this font, such as

TTF_FontFaceFamilyName () and

TTF_FontFaceStyleName (), are no longer valid after this call, as well.

FUNCTION PARAMETERS

the font to dispose of.

AVAILABILITY

This function is available since SDL_ttf 3.0.0.

SEE ALSO

TTF_OpenFont(3), TTF_OpenFontIndexDPIIO(3), TTF_OpenFontIO(3), TTF_OpenFontDPI(3), TTF_OpenFontDPIIO(3), TTF_OpenFontIndex(3), TTF_OpenFontIndexDPI(3), TTF_OpenFontIndexDPIIO(3), TTF_OpenFontIndexIO(3)

SDL_ttf 3.0.0 SDL_ttf