diff -r ffa851df0825 -r 2fb8b9db1c86 symbian-qemu-0.9.1-12/libsdl-trunk/docs/html/sdlvideomodeok.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/symbian-qemu-0.9.1-12/libsdl-trunk/docs/html/sdlvideomodeok.html Fri Jul 31 15:01:17 2009 +0100 @@ -0,0 +1,270 @@ +
SDL_VideoModeOK returns 0 +if the requested mode is not supported under any bit depth, or returns the +bits-per-pixel of the closest available mode with the given width, height and requested surface flags (see SDL_SetVideoMode).
The bits-per-pixel value returned is only a suggested mode. You can usually request and bpp you want when setting the video mode and SDL will emulate that color depth with a shadow video surface.
The arguments to SDL_VideoModeOK are the same ones you +would pass to SDL_SetVideoMode
SDL_Surface *screen; +Uint32 bpp; +. +. +. +printf("Checking mode 640x480@16bpp.\n"); +bpp=SDL_VideoModeOK(640, 480, 16, SDL_HWSURFACE); + +if(!bpp){ + printf("Mode not available.\n"); + exit(-1); +} + +printf("SDL Recommends 640x480@%dbpp.\n", bpp); +screen=SDL_SetVideoMode(640, 480, bpp, SDL_HWSURFACE); +. +.