hedgewars/SDLh.pas
changeset 4911 5d10bd725efe
parent 4454 42bfc1a70968
child 4933 86bd82d58a0b
equal deleted inserted replaced
4910:9dcb2e83b24f 4911:5d10bd725efe
   717 function  SDL_CreateWindow(title: PChar; x,y,w,h, flags: LongInt): PSDL_Window; cdecl; external SDLLibName;
   717 function  SDL_CreateWindow(title: PChar; x,y,w,h, flags: LongInt): PSDL_Window; cdecl; external SDLLibName;
   718 function  SDL_CreateRenderer(window: PSDL_Window; index, flags: LongInt): LongInt; cdecl; external SDLLibName;
   718 function  SDL_CreateRenderer(window: PSDL_Window; index, flags: LongInt): LongInt; cdecl; external SDLLibName;
   719 function  SDL_SetRenderDrawColor(r,g,b,a: byte): LongInt; cdecl; external SDLLibName;
   719 function  SDL_SetRenderDrawColor(r,g,b,a: byte): LongInt; cdecl; external SDLLibName;
   720 function  SDL_DestroyRenderer(window: PSDL_Window): LongInt; cdecl; external SDLLibName;
   720 function  SDL_DestroyRenderer(window: PSDL_Window): LongInt; cdecl; external SDLLibName;
   721 function  SDL_DestroyWindow(window: PSDL_Window): LongInt; cdecl; external SDLLibName;
   721 function  SDL_DestroyWindow(window: PSDL_Window): LongInt; cdecl; external SDLLibName;
       
   722 function  SDL_SelectVideoDisplay(index: LongInt): LongInt; cdecl; external SDLLibName;
       
   723 function  SDL_GetNumVideoDisplays: LongInt; cdecl; external SDLLibName;
   722 
   724 
   723 function  SDL_RenderFill(rect: PSDL_Rect): LongInt;
   725 function  SDL_RenderFill(rect: PSDL_Rect): LongInt;
   724 function  SDL_RenderFillRect(rect: PSDL_Rect): LongInt; cdecl; external SDLLibName;
   726 function  SDL_RenderFillRect(rect: PSDL_Rect): LongInt; cdecl; external SDLLibName;
   725 function  SDL_RenderClear: LongInt; cdecl; external SDLLibName;
   727 function  SDL_RenderClear: LongInt; cdecl; external SDLLibName;
   726 procedure SDL_RenderPresent; cdecl; external SDLLibName;
   728 procedure SDL_RenderPresent; cdecl; external SDLLibName;