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

  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_atarigl_c.h 83 #define gl_active (this->gl_data->gl_active)
84 #define gl_ctx (this->gl_data->ctx)
85 #define gl_oldmesa (this->gl_data->gl_oldmesa)
86 #define gl_pixelsize (this->gl_data->gl_pixelsize)
87 #define gl_upsidedown (this->gl_data->gl_upsidedown)
88 #define gl_shadow (this->gl_data->gl_shadow)
89 #define gl_convert (this->gl_data->ConvertSurface)
90 #define gl_copyshadow (this->gl_data->CopyShadow)
91 #define gl_curformat (this->gl_data->format)
92 #define gl_curdepth (this->gl_data->depth
    [all...]
SDL_atarigl.c 96 if (this->gl_data->OSMesaDestroyLDG) {
97 this->gl_data->OSMesaDestroyLDG();
106 if (this->gl_data->OSMesaDestroyContext) {
107 this->gl_data->OSMesaDestroyContext(gl_ctx);
168 this->gl_data->glGetIntegerv = SDL_LoadFunction(handle, "glGetIntegerv");
169 this->gl_data->glFinish = SDL_LoadFunction(handle, "glFinish");
170 this->gl_data->glFlush = SDL_LoadFunction(handle, "glFlush");
173 if (this->gl_data->glGetIntegerv == NULL) {
177 if ((this->gl_data->glFinish == NULL) &&
178 (this->gl_data->glFlush == NULL))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_wingl.c 133 hglrc = this->gl_data->wglCreateContext(hdc);
135 this->gl_data->wglMakeCurrent(hdc, hglrc);
139 this->gl_data->wglGetProcAddress("wglGetExtensionsStringARB");
147 this->gl_data->WGL_ARB_pixel_format = 0;
152 this->gl_data->wglGetProcAddress("wglChoosePixelFormatARB");
155 this->gl_data->WGL_ARB_pixel_format = 1;
160 this->gl_data->wglMakeCurrent(NULL, NULL);
161 this->gl_data->wglDeleteContext(hglrc);
323 GL_hrc = this->gl_data->wglCreateContext(GL_hdc);
334 if ( this->gl_data->WGL_ARB_pixel_format )
    [all...]
SDL_wingl_c.h 58 #define gl_active (this->gl_data->gl_active)
59 #define GL_pfd (this->gl_data->GL_pfd)
60 #define GL_hdc (this->gl_data->GL_hdc)
61 #define GL_hrc (this->gl_data->GL_hrc)
62 #define pixel_format (this->gl_data->pixel_format)
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gl.c 69 extensions = this->gl_data->glXQueryExtensionsString(GFX_Display,SDL_Screen);
199 glx_visualinfo = this->gl_data->glXChooseVisual(GFX_Display,
204 glx_visualinfo = this->gl_data->glXChooseVisual(GFX_Display,
261 glx_context = this->gl_data->glXCreateContext(GFX_Display,
275 this->gl_data->glXSwapIntervalSGI = NULL;
278 this->gl_data->glXSwapIntervalMESA = NULL;
279 this->gl_data->glXGetSwapIntervalMESA = NULL;
282 if ( this->gl_data->glXSwapIntervalMESA ) {
283 this->gl_data->glXSwapIntervalMESA(this->gl_config.swap_control);
284 } else if ( this->gl_data->glXSwapIntervalSGI )
    [all...]
SDL_x11gl_c.h 82 #define gl_active (this->gl_data->gl_active)
83 #define glx_context (this->gl_data->glx_context)
84 #define glx_visualinfo (this->gl_data->glx_visualinfo)
SDL_x11video.c 96 if ( device->gl_data ) {
97 SDL_free(device->gl_data);
116 device->gl_data = (struct SDL_PrivateGLData *)
117 SDL_malloc((sizeof *device->gl_data));
118 SDL_memset(device->gl_data, 0, (sizeof *device->gl_data));
121 (device->gl_data == NULL) ) {
127 SDL_memset(device->gl_data, 0, (sizeof *device->gl_data));
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxgl.c 92 this->gl_data->gl_active = 1;
109 this->gl_data->gl_active = 0;
SDL_cgxvideo.c 172 if ( device->gl_data ) {
173 SDL_free(device->gl_data);
189 device->gl_data = (struct SDL_PrivateGLData *)
190 SDL_malloc((sizeof *device->gl_data));
193 (device->gl_data == NULL) ) {
200 SDL_memset(device->gl_data, 0, sizeof(*device->gl_data));
865 if(this->gl_data->gl_active == 0) {
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxvideo.c 71 if (device -> gl_data) SDL_free (device -> gl_data) ;
90 device -> gl_data = NULL ;
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_video.c 80 device->gl_data = NULL;
154 if (device->gl_data)
156 SDL_free(device->gl_data);
157 device->gl_data = NULL;
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios.c 153 device->gl_data = (struct SDL_PrivateGLData *)
154 SDL_malloc((sizeof *device->gl_data));
164 SDL_memset(device->gl_data, 0, sizeof(*device->gl_data));
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibvideo.c 119 if ( device->gl_data ) {
120 SDL_free(device->gl_data);
136 device->gl_data = (struct SDL_PrivateGLData *)
137 SDL_malloc((sizeof *device->gl_data));
140 (device->gl_data == NULL) ) {
146 SDL_memset(device->gl_data, 0, (sizeof *device->gl_data));
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_sysvideo.h 320 struct SDL_PrivateGLData *gl_data; member in struct:SDL_VideoDevice
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.c 140 device->gl_data = (struct SDL_PrivateGLData *)
141 SDL_malloc((sizeof *device->gl_data));
151 SDL_memset(device->gl_data, 0, sizeof(*device->gl_data));
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.c 549 if ( this->gl_data ) {
550 SDL_free(this->gl_data);
571 device->gl_data = (struct SDL_PrivateGLData *)
572 SDL_malloc((sizeof *device->gl_data));
575 (device->gl_data == NULL) ) {
581 SDL_memset(device->gl_data, 0, (sizeof *device->gl_data));
    [all...]

Completed in 289 milliseconds