Searched refs:videoflags (Results 1 - 11 of 11) sorted by last modified time

/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
H A Dmain.c20 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/
H A Dmain.c20 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/
H A Dmain.c20 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/
H A Dmain.c20 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/
H A Dmain.c20 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/
H A Dmain.c20 Uint32 videoflags = SDL_SWSURFACE; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dcheckkeys.c89 Uint32 videoflags; local
97 videoflags = SDL_SWSURFACE;
101 videoflags |= SDL_FULLSCREEN;
109 if ( SDL_SetVideoMode(640, 480, 0, videoflags) == NULL ) {
H A Dgraywin.c137 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
[all...]
H A Dtestalpha.c328 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
[all...]
H A Dtestbitmap.c58 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 ) {
H A Dtestsprite.c157 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);

Completed in 109 milliseconds