Set font size dynamically with target resolutions, in dots per inch.
Defined in <SDL3_ttf/SDL_ttf.h>
bool TTF_SetFontSizeDPI(TTF_Font *font, float ptsize, int hdpi, int vdpi);
TTF_Font * | font | the font to resize. |
float | ptsize | the new point size. |
int | hdpi | the target horizontal DPI. |
int | vdpi | the target vertical DPI. |
(bool) Returns true on success or false on failure; call SDL_GetError() for more information.
This updates any TTF_Text objects using this font, and clears already-generated glyphs, if any, from the cache.
This function should be called on the thread that created the font.
This function is available since SDL_ttf 3.0.0.