hedgewars/checksdl.dpr
author unc0rr
Fri, 11 Aug 2006 20:00:29 +0000
changeset 108 08f1fe6f21f8
parent 104 e647d0589bff
child 184 f97a7a3dc8f6
permissions -rw-r--r--
Small fixes for better FPC compatibility

program checksdl;
{$APPTYPE CONSOLE}
uses
  SDLh;

procedure fail;
begin
writeln('fail');
halt
end;

var SDLPrimSurface: PSDL_Surface;
    Color: Longword;
begin
Write('Init SDL... ');
if SDL_Init(SDL_INIT_VIDEO) < 0 then fail;
WriteLn('ok');

Write('Create primsurface... ');
SDLPrimSurface:= SDL_SetVideoMode(640, 480, 16, 0);
if (SDLPrimSurface = nil) then fail;
WriteLn('ok');

Write('Try map color... ');
Color:= $FFFFFF;
Color:= SDL_MapRGB(SDLPrimSurface^.format, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF);
Writeln('ok');
Writeln('Result = ', Color);

SDL_Quit()
end.