/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/ |
main.c | 20 Uint32 videoflags = SDL_SWSURFACE; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/ |
main.c | 20 Uint32 videoflags = SDL_SWSURFACE; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/ |
main.c | 20 Uint32 videoflags = SDL_SWSURFACE; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/ |
main.c | 20 Uint32 videoflags = SDL_SWSURFACE; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/ |
main.c | 20 Uint32 videoflags = SDL_SWSURFACE; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/ |
main.c | 20 Uint32 videoflags = SDL_SWSURFACE; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
|
/external/qemu/distrib/sdl-1.2.15/test/ |
checkkeys.c | 89 Uint32 videoflags; local 97 videoflags = SDL_SWSURFACE; 101 videoflags |= SDL_FULLSCREEN; 109 if ( SDL_SetVideoMode(640, 480, 0, videoflags) == NULL ) {
|
graywin.c | 137 Uint32 videoflags; local 152 videoflags = SDL_SWSURFACE; 168 videoflags |= SDL_HWSURFACE; 171 videoflags |= SDL_HWPALETTE; 174 videoflags |= SDL_DOUBLEBUF; 177 videoflags |= SDL_NOFRAME; 180 videoflags |= SDL_RESIZABLE; 183 videoflags |= SDL_FULLSCREEN; 192 screen = CreateScreen(width, height, bpp, videoflags); 219 videoflags ^= SDL_FULLSCREEN [all...] |
testbitmap.c | 58 Uint32 videoflags; local 75 videoflags = SDL_SWSURFACE; 83 videoflags |= SDL_HWPALETTE; 86 videoflags |= SDL_HWSURFACE; 89 videoflags |= SDL_FULLSCREEN; 99 if ( (screen=SDL_SetVideoMode(640,480,video_bpp,videoflags)) == NULL ) {
|
testsprite.c | 157 Uint32 videoflags; local 170 videoflags = SDL_SWSURFACE|SDL_ANYFORMAT; 187 videoflags &= ~SDL_ANYFORMAT; 191 videoflags = FastestFlags(videoflags, width, height, video_bpp); 194 videoflags ^= SDL_HWSURFACE; 197 videoflags ^= SDL_DOUBLEBUF; 203 videoflags ^= SDL_FULLSCREEN; 216 screen = SDL_SetVideoMode(width, height, video_bpp, videoflags);
|
testalpha.c | 328 Uint32 videoflags; local 358 videoflags = SDL_SWSURFACE; 368 videoflags |= SDL_HWSURFACE; 371 videoflags |= SDL_HWPALETTE; 380 videoflags |= SDL_RESIZABLE; 383 videoflags |= SDL_NOFRAME; 386 videoflags |= SDL_FULLSCREEN; 396 if ( (screen=SDL_SetVideoMode(w,h,video_bpp,videoflags)) == NULL ) { 478 screen = SDL_SetVideoMode(event.resize.w, event.resize.h, video_bpp, videoflags); 515 videoflags ^= SDL_FULLSCREEN [all...] |