hedgewars/SDLh.pas
changeset 6286 835392304f81
parent 6285 2c3a6bece643
child 6327 1a69a0d52d32
child 6328 d14adf1c7721
equal deleted inserted replaced
6285:2c3a6bece643 6286:835392304f81
   917 
   917 
   918 (*  SDL_ttf  *)
   918 (*  SDL_ttf  *)
   919 function  TTF_Init: LongInt; cdecl; external SDL_TTFLibName;
   919 function  TTF_Init: LongInt; cdecl; external SDL_TTFLibName;
   920 procedure TTF_Quit; cdecl; external SDL_TTFLibName;
   920 procedure TTF_Quit; cdecl; external SDL_TTFLibName;
   921 
   921 
   922 function  TTF_SizeUTF8(font: PTTF_Font; const text: PChar; out w, h: LongInt): LongInt; cdecl; external SDL_TTFLibName;
   922 function  TTF_SizeUTF8(font: PTTF_Font; const text: PChar; w, h: PLongInt): LongInt; cdecl; external SDL_TTFLibName;
   923 
   923 
   924 function  TTF_RenderUTF8_Solid(font: PTTF_Font; const text: PChar; fg: TSDL_Color): PSDL_Surface; cdecl; external SDL_TTFLibName;
   924 function  TTF_RenderUTF8_Solid(font: PTTF_Font; const text: PChar; fg: TSDL_Color): PSDL_Surface; cdecl; external SDL_TTFLibName;
   925 function  TTF_RenderUTF8_Blended(font: PTTF_Font; const text: PChar; fg: TSDL_Color): PSDL_Surface; cdecl; external SDL_TTFLibName;
   925 function  TTF_RenderUTF8_Blended(font: PTTF_Font; const text: PChar; fg: TSDL_Color): PSDL_Surface; cdecl; external SDL_TTFLibName;
   926 function  TTF_RenderUTF8_Shaded(font: PTTF_Font; const text: PChar; fg, bg: TSDL_Color): PSDL_Surface; cdecl; external SDL_TTFLibName;
   926 function  TTF_RenderUTF8_Shaded(font: PTTF_Font; const text: PChar; fg, bg: TSDL_Color): PSDL_Surface; cdecl; external SDL_TTFLibName;
   927 
   927