diff --git a/include/SDL3_ttf/SDL_ttf.h b/include/SDL3_ttf/SDL_ttf.h index f54d46a6..ef921d3f 100644 --- a/include/SDL3_ttf/SDL_ttf.h +++ b/include/SDL3_ttf/SDL_ttf.h @@ -216,15 +216,15 @@ extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIndex(const char *file, int ptsiz * size becomes the index of choosing which size. If the value is too high, * the last indexed size will be the default. * - * If `closeio` is SDL_TRUE, `src` will be automatically closed once the - * font is closed. Otherwise you should close `src` yourself after closing - * the font. + * If `closeio` is SDL_TRUE, `src` will be automatically closed once the font + * is closed. Otherwise you should close `src` yourself after closing the + * font. * * When done with the returned TTF_Font, use TTF_CloseFont() to dispose of it. * * \param src an SDL_IOStream to provide a font file's data. - * \param closeio SDL_TRUE to close `src` when the font is closed, - * SDL_FALSE to leave it open. + * \param closeio SDL_TRUE to close `src` when the font is closed, SDL_FALSE + * to leave it open. * \param ptsize point size to use for the newly-opened font. * \returns a valid TTF_Font, or NULL on error. * @@ -241,9 +241,9 @@ extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIO(SDL_IOStream *src, SDL_bool cl * size becomes the index of choosing which size. If the value is too high, * the last indexed size will be the default. * - * If `closeio` is SDL_TRUE `src` will be automatically closed once the - * font is closed. Otherwise you should close `src` yourself after closing - * the font. + * If `closeio` is SDL_TRUE `src` will be automatically closed once the font + * is closed. Otherwise you should close `src` yourself after closing the + * font. * * Some fonts have multiple "faces" included. The index specifies which face * to use from the font file. Font files with only one face should specify @@ -252,8 +252,8 @@ extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIO(SDL_IOStream *src, SDL_bool cl * When done with the returned TTF_Font, use TTF_CloseFont() to dispose of it. * * \param src an SDL_IOStream to provide a font file's data. - * \param closeio SDL_TRUE to close `src` when the font is closed, - * SDL_FALSE to leave it open. + * \param closeio SDL_TRUE to close `src` when the font is closed, SDL_FALSE + * to leave it open. * \param ptsize point size to use for the newly-opened font. * \param index index of the face in the font file. * \returns a valid TTF_Font, or NULL on error. @@ -324,15 +324,15 @@ extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIndexDPI(const char *file, int pt * size becomes the index of choosing which size. If the value is too high, * the last indexed size will be the default. * - * If `closeio` is SDL_TRUE `src` will be automatically closed once the - * font is closed. Otherwise you should close `src` yourself after closing - * the font. + * If `closeio` is SDL_TRUE `src` will be automatically closed once the font + * is closed. Otherwise you should close `src` yourself after closing the + * font. * * When done with the returned TTF_Font, use TTF_CloseFont() to dispose of it. * * \param src an SDL_IOStream to provide a font file's data. - * \param closeio SDL_TRUE to close `src` when the font is closed, - * SDL_FALSE to leave it open. + * \param closeio SDL_TRUE to close `src` when the font is closed, SDL_FALSE + * to leave it open. * \param ptsize point size to use for the newly-opened font. * \param hdpi the target horizontal DPI. * \param vdpi the target vertical DPI. @@ -353,9 +353,9 @@ extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontDPIIO(SDL_IOStream *src, SDL_bool * size becomes the index of choosing which size. If the value is too high, * the last indexed size will be the default. * - * If `closeio` is SDL_TRUE `src` will be automatically closed once the - * font is closed. Otherwise you should close `src` yourself after closing - * the font. + * If `closeio` is SDL_TRUE `src` will be automatically closed once the font + * is closed. Otherwise you should close `src` yourself after closing the + * font. * * Some fonts have multiple "faces" included. The index specifies which face * to use from the font file. Font files with only one face should specify @@ -364,8 +364,8 @@ extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontDPIIO(SDL_IOStream *src, SDL_bool * When done with the returned TTF_Font, use TTF_CloseFont() to dispose of it. * * \param src an SDL_IOStream to provide a font file's data. - * \param closeio SDL_TRUE to close `src` when the font is closed, - * SDL_FALSE to leave it open. + * \param closeio SDL_TRUE to close `src` when the font is closed, SDL_FALSE + * to leave it open. * \param ptsize point size to use for the newly-opened font. * \param index index of the face in the font file. * \param hdpi the target horizontal DPI.