HomeSort by relevance Sort by last modified time
    Searched refs:gl_config (Results 1 - 14 of 14) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_gl.c 53 *value=this->gl_config.double_buffer;
56 *value=this->gl_config.stencil_size;
59 *value=this->gl_config.depth_size;
63 *value=this->gl_config.red_size;
66 *value=this->gl_config.green_size;
69 *value=this->gl_config.blue_size;
72 *value=this->gl_config.alpha_size;
75 *value=this->gl_config.accum_red_size;
78 *value=this->gl_config.accum_green_size;
81 *value=this->gl_config.accum_blue_size
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macgl.c 41 if ( ! this->gl_config.driver_loaded ) {
49 if ( this->gl_config.red_size != 0 &&
50 this->gl_config.blue_size != 0 &&
51 this->gl_config.green_size != 0 ) {
53 attributes[i++] = this->gl_config.red_size;
55 attributes[i++] = this->gl_config.green_size;
57 attributes[i++] = this->gl_config.blue_size;
59 attributes[i++] = this->gl_config.alpha_size;
61 if ( this->gl_config.double_buffer ) {
64 if ( this->gl_config.depth_size != 0 )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzGL.m 62 if (!this->gl_config.driver_loaded) {
81 attr[i++] = this->gl_config.depth_size;
83 if ( this->gl_config.double_buffer ) {
87 if ( this->gl_config.stereo ) {
91 if ( this->gl_config.stencil_size != 0 ) {
93 attr[i++] = this->gl_config.stencil_size;
96 if ( (this->gl_config.accum_red_size +
97 this->gl_config.accum_green_size +
98 this->gl_config.accum_blue_size +
99 this->gl_config.accum_alpha_size) > 0 )
    [all...]
SDL_QuartzVideo.m     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_wingl.c 184 if ( ! this->gl_config.driver_loaded ) {
196 if ( this->gl_config.double_buffer ) {
199 if ( this->gl_config.stereo ) {
203 GL_pfd.cColorBits = this->gl_config.buffer_size;
204 GL_pfd.cRedBits = this->gl_config.red_size;
205 GL_pfd.cGreenBits = this->gl_config.green_size;
206 GL_pfd.cBlueBits = this->gl_config.blue_size;
207 GL_pfd.cAlphaBits = this->gl_config.alpha_size;
208 GL_pfd.cAccumRedBits = this->gl_config.accum_red_size;
209 GL_pfd.cAccumGreenBits = this->gl_config.accum_green_size
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gl.c 98 if ( ! this->gl_config.driver_loaded ) {
119 /* Setup our GLX attributes according to the gl_config. */
123 attribs[i++] = this->gl_config.red_size;
125 attribs[i++] = this->gl_config.green_size;
127 attribs[i++] = this->gl_config.blue_size;
129 if( this->gl_config.alpha_size ) {
131 attribs[i++] = this->gl_config.alpha_size;
134 if( this->gl_config.buffer_size ) {
136 attribs[i++] = this->gl_config.buffer_size;
139 if( this->gl_config.double_buffer )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxgl.c 51 if ( this->gl_config.double_buffer ) {
59 if ( this->gl_config.red_size != 0 &&
60 this->gl_config.blue_size != 0 &&
61 this->gl_config.green_size != 0 ) {
68 if ( this->gl_config.depth_size == 0 ) {
73 if ( this->gl_config.stencil_size == 0 ) {
78 if ( this->gl_config.accum_red_size != 0 &&
79 this->gl_config.accum_blue_size != 0 &&
80 this->gl_config.accum_green_size != 0 ) {
93 this->gl_config.driver_loaded = 1
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysvideo.cc 500 if (_this->gl_config.double_buffer)
504 if (_this->gl_config.alpha_size > 0 || bpp == 32)
506 if (_this->gl_config.depth_size > 0)
508 if (_this->gl_config.stencil_size > 0)
510 if (_this->gl_config.accum_red_size > 0
511 || _this->gl_config.accum_green_size > 0
512 || _this->gl_config.accum_blue_size > 0
513 || _this->gl_config.accum_alpha_size > 0)
635 if (_this->gl_config.dll_handle == NULL) {
641 _this->gl_config.dll_handle = (void*)cookie
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_atarigl.c 221 this->gl_config.dll_handle = handle;
223 SDL_strlcpy(this->gl_config.driver_path, path,
224 SDL_arraysize(this->gl_config.driver_path));
226 *this->gl_config.driver_path = '\0';
230 this->gl_config.driver_loaded = 1;
243 if (this->gl_config.dll_handle) {
244 func = SDL_LoadFunction(this->gl_config.dll_handle, (void *)proc);
319 if (this->gl_config.dll_handle) {
357 if (this->gl_config.dll_handle) {
395 if (this->gl_config.dll_handle)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_video.c 218 video->gl_config.driver_loaded = 0;
219 video->gl_config.dll_handle = NULL;
220 video->gl_config.red_size = 3;
221 video->gl_config.green_size = 3;
222 video->gl_config.blue_size = 2;
223 video->gl_config.alpha_size = 0;
224 video->gl_config.buffer_size = 0;
225 video->gl_config.depth_size = 16;
226 video->gl_config.stencil_size = 0;
227 video->gl_config.double_buffer = 1
    [all...]
SDL_sysvideo.h 315 } gl_config; member in struct:SDL_VideoDevice
  /external/qemu/distrib/sdl-1.2.12/src/video/dc/
SDL_dcvideo.c 256 this->gl_config.driver_loaded = 1;
390 this->gl_config.driver_loaded = 1;
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios.c 585 if (this->gl_config.double_buffer) {
  /external/mesa3d/src/mesa/main/
mtypes.h 467 struct gl_config struct
    [all...]

Completed in 289 milliseconds