|
| SDL_version * | TTF_Linked_Version (void) |
| |
| void | TTF_ByteSwappedUNICODE (int swapped) |
| |
| int | TTF_Init (void) |
| |
| TTF_Font * | TTF_OpenFont (char *file, int ptsize) |
| |
| TTF_Font * | TTF_OpenFontIndex (char *file, int ptsize, long index) |
| |
| TTF_Font * | TTF_OpenFontRW (SDL_RWops *src, int freesrc, int ptsize) |
| |
| TTF_Font * | TTF_OpenFontIndexRW (SDL_RWops *src, int freesrc, int ptsize, long index) |
| |
| int | TTF_GetFontStyle (TTF_Font *font) |
| |
| void | TTF_SetFontStyle (TTF_Font *font, int style) |
| |
| int | TTF_GetFontOutline (TTF_Font *font) |
| |
| void | TTF_SetFontOutline (TTF_Font *font, int outline) |
| |
| int | TTF_GetFontHinting (TTF_Font *font) |
| |
| void | TTF_SetFontHinting (TTF_Font *font, int hinting) |
| |
| int | TTF_FontHeight (TTF_Font *font) |
| |
| int | TTF_FontAscent (TTF_Font *font) |
| |
| int | TTF_FontDescent (TTF_Font *font) |
| |
| int | TTF_FontLineSkip (TTF_Font *font) |
| |
| int | TTF_GetFontKerning (TTF_Font *font) |
| |
| void | TTF_SetFontKerning (TTF_Font *font, int allowed) |
| |
| long | TTF_FontFaces (TTF_Font *font) |
| |
| int | TTF_FontFaceIsFixedWidth (TTF_Font *font) |
| |
| char * | TTF_FontFaceFamilyName (TTF_Font *font) |
| |
| char * | TTF_FontFaceStyleName (TTF_Font *font) |
| |
| int | TTF_GlyphIsProvided (TTF_Font *font, Uint16 ch) |
| |
| int | TTF_GlyphMetrics (TTF_Font *font, Uint16 ch, int *minx, int *maxx, int *miny, int *maxy, int *advance) |
| |
| int | TTF_SizeText (TTF_Font *font, char *text, int *w, int *h) |
| |
| int | TTF_SizeUTF8 (TTF_Font *font, char *text, int *w, int *h) |
| |
| int | TTF_SizeUNICODE (TTF_Font *font, Uint16 *text, int *w, int *h) |
| |
| SDL_Surface * | TTF_RenderText_Solid (TTF_Font *font, char *text, SDL_Color fg) |
| |
| SDL_Surface * | TTF_RenderUTF8_Solid (TTF_Font *font, char *text, SDL_Color fg) |
| |
| SDL_Surface * | TTF_RenderUNICODE_Solid (TTF_Font *font, Uint16 *text, SDL_Color fg) |
| |
| SDL_Surface * | TTF_RenderGlyph_Solid (TTF_Font *font, Uint16 ch, SDL_Color fg) |
| |
| SDL_Surface * | TTF_RenderText_Shaded (TTF_Font *font, char *text, SDL_Color fg, SDL_Color bg) |
| |
| SDL_Surface * | TTF_RenderUTF8_Shaded (TTF_Font *font, char *text, SDL_Color fg, SDL_Color bg) |
| |
| SDL_Surface * | TTF_RenderUNICODE_Shaded (TTF_Font *font, Uint16 *text, SDL_Color fg, SDL_Color bg) |
| |
| SDL_Surface * | TTF_RenderGlyph_Shaded (TTF_Font *font, Uint16 ch, SDL_Color fg, SDL_Color bg) |
| |
| SDL_Surface * | TTF_RenderText_Blended (TTF_Font *font, char *text, SDL_Color fg) |
| |
| SDL_Surface * | TTF_RenderUTF8_Blended (TTF_Font *font, char *text, SDL_Color fg) |
| |
| SDL_Surface * | TTF_RenderUNICODE_Blended (TTF_Font *font, Uint16 *text, SDL_Color fg) |
| |
| SDL_Surface * | TTF_RenderText_Blended_Wrapped (TTF_Font *font, char *text, SDL_Color fg, Uint32 wrapLength) |
| |
| SDL_Surface * | TTF_RenderUTF8_Blended_Wrapped (TTF_Font *font, char *text, SDL_Color fg, Uint32 wrapLength) |
| |
| SDL_Surface * | TTF_RenderUNICODE_Blended_Wrapped (TTF_Font *font, Uint16 *text, SDL_Color fg, Uint32 wrapLength) |
| |
| SDL_Surface * | TTF_RenderGlyph_Blended (TTF_Font *font, Uint16 ch, SDL_Color fg) |
| |
| void | TTF_CloseFont (TTF_Font *font) |
| |
| void | TTF_Quit (void) |
| |
| int | TTF_WasInit (void) |
| |
| int | TTF_GetFontKerningSize (TTF_Font *font, int prev_index, int index) |
| |
| TTF_Font * | TTF_CppWrap_FindValidFont (TTF_Font *font, Uint16 ch) |
| |
| void * | TTF_CppWrap_GetCppPtrRef (TTF_Font *font) |
| |
| void | TTF_CppWrap_SetCppPtrRef (TTF_Font *font, void *cpp_ptr_ref) |
| |