/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/ |
main.c | 19 Uint8 video_bpp = 0; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); 35 video_bpp, SDL_GetError());
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/ |
main.c | 19 Uint8 video_bpp = 0; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); 35 video_bpp, SDL_GetError());
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/ |
main.c | 19 Uint8 video_bpp = 0; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); 35 video_bpp, SDL_GetError());
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/ |
main.c | 19 Uint8 video_bpp = 0; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); 35 video_bpp, SDL_GetError());
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/ |
main.c | 19 Uint8 video_bpp = 0; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); 35 video_bpp, SDL_GetError());
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/ |
main.c | 19 Uint8 video_bpp = 0; local 32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); 35 video_bpp, SDL_GetError());
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testbitmap.c | 57 Uint8 video_bpp; local 74 video_bpp = 0; 79 video_bpp = atoi(argv[argc]); 99 if ( (screen=SDL_SetVideoMode(640,480,video_bpp,videoflags)) == NULL ) { 101 video_bpp, SDL_GetError()); 105 if (video_bpp==8) {
|
testalpha.c | 327 Uint8 video_bpp; local 353 video_bpp = info->vfmt->BitsPerPixel; 355 video_bpp = 16; 361 video_bpp = atoi(argv[++i]); 362 if (video_bpp<=8) { 363 video_bpp=16; 396 if ( (screen=SDL_SetVideoMode(w,h,video_bpp,videoflags)) == NULL ) { 398 w, h, video_bpp, SDL_GetError()); 478 screen = SDL_SetVideoMode(event.resize.w, event.resize.h, video_bpp, videoflags); 516 screen = SDL_SetVideoMode(w, h, video_bpp, videoflags) [all...] |
threadwin.c | 232 Uint8 video_bpp; local 239 video_bpp = 8; 259 video_bpp = atoi(argv[2]); 283 screen = SDL_SetVideoMode(640, 480, video_bpp, video_flags); 286 video_bpp, SDL_GetError());
|
testsprite.c | 156 Uint8 video_bpp; local 173 video_bpp = 8; 186 video_bpp = atoi(argv[argc]); 191 videoflags = FastestFlags(videoflags, width, height, video_bpp); 216 screen = SDL_SetVideoMode(width, height, video_bpp, videoflags);
|
testwm.c | 13 static Uint8 video_bpp; variable 30 screen = SDL_SetVideoMode(w, h, video_bpp, video_flags); 33 w, h, video_bpp, SDL_GetError()); 351 video_bpp = 8; 381 video_bpp = atoi(argv[2]);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_video.c | 589 int video_bpp; local 623 video_bpp = bpp; 624 if ( ! SDL_GetVideoMode(&video_w, &video_h, &video_bpp, flags) ) { 630 if ( video_bpp > 8 ) { 683 mode = video->SetVideoMode(this, prev_mode,video_w,video_h,video_bpp,flags); [all...] |