2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2009 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "SDL_config.h"
24 #include "SDL_x11video.h"
25 #include "../../events/SDL_events_c.h"
26 #include "SDL_x11dga_c.h"
27 #include "SDL_x11gl_c.h"
30 /* IRIX doesn't have a GL library versioning system */
31 #define DEFAULT_OPENGL "libGL.so"
32 #elif defined(__MACOSX__)
33 #define DEFAULT_OPENGL "/usr/X11R6/lib/libGL.1.dylib"
34 #elif defined(__QNXNTO__)
35 #define DEFAULT_OPENGL "libGL.so.3"
36 #elif defined(__OpenBSD__)
37 #define DEFAULT_OPENGL "libGL.so.4.0"
39 #define DEFAULT_OPENGL "libGL.so.1"
42 #ifndef GLX_ARB_multisample
43 #define GLX_ARB_multisample
44 #define GLX_SAMPLE_BUFFERS_ARB 100000
45 #define GLX_SAMPLES_ARB 100001
48 /* GLX_EXT_visual_rating stuff that might not be in the system headers... */
49 #ifndef GLX_VISUAL_CAVEAT_EXT
50 #define GLX_VISUAL_CAVEAT_EXT 0x20
53 #define GLX_NONE_EXT 0x8000
55 #ifndef GLX_SLOW_VISUAL_EXT
56 #define GLX_SLOW_VISUAL_EXT 0x8001
58 #ifndef GLX_NON_CONFORMANT_VISUAL_EXT
59 #define GLX_NON_CONFORMANT_VISUAL_EXT 0x800D
63 #if SDL_VIDEO_OPENGL_GLX
64 static int glXExtensionSupported(_THIS, const char *extension)
66 const char *extensions;
68 const char *where, *terminator;
70 /* Extension names should not have spaces. */
71 where = SDL_strchr(extension, ' ');
72 if ( where || *extension == '\0' ) {
76 extensions = this->gl_data->glXQueryExtensionsString(GFX_Display,SDL_Screen);
77 /* It takes a bit of care to be fool-proof about parsing the
78 * OpenGL extensions string. Don't be fooled by sub-strings, etc.
81 /* http://bugs.debian.org/537487 */
82 if (extensions == NULL) {
89 where = SDL_strstr(start, extension);
92 terminator = where + strlen(extension);
93 if (where == start || *(where - 1) == ' ')
94 if (*terminator == ' ' || *terminator == '\0') return 1;
100 #endif /* SDL_VIDEO_OPENGL_GLX */
102 XVisualInfo *X11_GL_GetVisual(_THIS)
104 #if SDL_VIDEO_OPENGL_GLX
109 /* load the gl driver from a default path */
110 if ( ! this->gl_config.driver_loaded ) {
111 /* no driver has been loaded, use default (ourselves) */
112 if ( X11_GL_LoadLibrary(this, NULL) < 0 ) {
117 /* See if we already have a window which we must use */
118 if ( SDL_windowid ) {
123 XGetWindowAttributes(SDL_Display, SDL_Window, &a);
124 vi_in.screen = SDL_Screen;
125 vi_in.visualid = XVisualIDFromVisual(a.visual);
126 glx_visualinfo = XGetVisualInfo(SDL_Display,
127 VisualScreenMask|VisualIDMask, &vi_in, &out_count);
128 return glx_visualinfo;
131 /* Setup our GLX attributes according to the gl_config. */
133 attribs[i++] = GLX_RGBA;
134 attribs[i++] = GLX_RED_SIZE;
135 attribs[i++] = this->gl_config.red_size;
136 attribs[i++] = GLX_GREEN_SIZE;
137 attribs[i++] = this->gl_config.green_size;
138 attribs[i++] = GLX_BLUE_SIZE;
139 attribs[i++] = this->gl_config.blue_size;
141 if( this->gl_config.alpha_size ) {
142 attribs[i++] = GLX_ALPHA_SIZE;
143 attribs[i++] = this->gl_config.alpha_size;
146 if( this->gl_config.buffer_size ) {
147 attribs[i++] = GLX_BUFFER_SIZE;
148 attribs[i++] = this->gl_config.buffer_size;
151 if( this->gl_config.double_buffer ) {
152 attribs[i++] = GLX_DOUBLEBUFFER;
155 attribs[i++] = GLX_DEPTH_SIZE;
156 attribs[i++] = this->gl_config.depth_size;
158 if( this->gl_config.stencil_size ) {
159 attribs[i++] = GLX_STENCIL_SIZE;
160 attribs[i++] = this->gl_config.stencil_size;
163 if( this->gl_config.accum_red_size ) {
164 attribs[i++] = GLX_ACCUM_RED_SIZE;
165 attribs[i++] = this->gl_config.accum_red_size;
168 if( this->gl_config.accum_green_size ) {
169 attribs[i++] = GLX_ACCUM_GREEN_SIZE;
170 attribs[i++] = this->gl_config.accum_green_size;
173 if( this->gl_config.accum_blue_size ) {
174 attribs[i++] = GLX_ACCUM_BLUE_SIZE;
175 attribs[i++] = this->gl_config.accum_blue_size;
178 if( this->gl_config.accum_alpha_size ) {
179 attribs[i++] = GLX_ACCUM_ALPHA_SIZE;
180 attribs[i++] = this->gl_config.accum_alpha_size;
183 if( this->gl_config.stereo ) {
184 attribs[i++] = GLX_STEREO;
187 if( this->gl_config.multisamplebuffers ) {
188 attribs[i++] = GLX_SAMPLE_BUFFERS_ARB;
189 attribs[i++] = this->gl_config.multisamplebuffers;
192 if( this->gl_config.multisamplesamples ) {
193 attribs[i++] = GLX_SAMPLES_ARB;
194 attribs[i++] = this->gl_config.multisamplesamples;
197 if( this->gl_config.accelerated >= 0 &&
198 glXExtensionSupported(this, "GLX_EXT_visual_rating") ) {
199 attribs[i++] = GLX_VISUAL_CAVEAT_EXT;
200 attribs[i++] = GLX_NONE_EXT;
203 #ifdef GLX_DIRECT_COLOR /* Try for a DirectColor visual for gamma support */
204 if ( !SDL_getenv("SDL_VIDEO_X11_NODIRECTCOLOR") ) {
205 attribs[i++] = GLX_X_VISUAL_TYPE;
206 attribs[i++] = GLX_DIRECT_COLOR;
211 glx_visualinfo = this->gl_data->glXChooseVisual(GFX_Display,
212 SDL_Screen, attribs);
213 #ifdef GLX_DIRECT_COLOR
214 if( !glx_visualinfo && !SDL_getenv("SDL_VIDEO_X11_NODIRECTCOLOR") ) { /* No DirectColor visual? Try again.. */
216 glx_visualinfo = this->gl_data->glXChooseVisual(GFX_Display,
217 SDL_Screen, attribs);
220 if( !glx_visualinfo ) {
221 SDL_SetError( "Couldn't find matching GLX visual");
225 printf("Found GLX visual 0x%x\n", glx_visualinfo->visualid);
227 return glx_visualinfo;
229 SDL_SetError("X11 driver not configured with OpenGL");
234 int X11_GL_CreateWindow(_THIS, int w, int h)
237 #if SDL_VIDEO_OPENGL_GLX
238 XSetWindowAttributes attributes;
242 black = (glx_visualinfo->visual == DefaultVisual(SDL_Display,
244 ? BlackPixel(SDL_Display, SDL_Screen) : 0;
245 attributes.background_pixel = black;
246 attributes.border_pixel = black;
247 attributes.colormap = SDL_XColorMap;
248 mask = CWBackPixel | CWBorderPixel | CWColormap;
250 SDL_Window = XCreateWindow(SDL_Display, WMwindow,
251 0, 0, w, h, 0, glx_visualinfo->depth,
252 InputOutput, glx_visualinfo->visual,
255 SDL_SetError("Could not create window");
260 SDL_SetError("X11 driver not configured with OpenGL");
266 int X11_GL_CreateContext(_THIS)
269 #if SDL_VIDEO_OPENGL_GLX
271 /* We do this to create a clean separation between X and GLX errors. */
272 XSync( SDL_Display, False );
273 glx_context = this->gl_data->glXCreateContext(GFX_Display,
274 glx_visualinfo, NULL, True);
275 XSync( GFX_Display, False );
277 if ( glx_context == NULL ) {
278 SDL_SetError("Could not create GL context");
281 if ( X11_GL_MakeCurrent(this) < 0 ) {
286 if ( !glXExtensionSupported(this, "GLX_SGI_swap_control") ) {
287 this->gl_data->glXSwapIntervalSGI = NULL;
289 if ( !glXExtensionSupported(this, "GLX_MESA_swap_control") ) {
290 this->gl_data->glXSwapIntervalMESA = NULL;
292 if ( this->gl_config.swap_control >= 0 ) {
294 if ( this->gl_data->glXSwapIntervalMESA ) {
295 rc = this->gl_data->glXSwapIntervalMESA(this->gl_config.swap_control);
296 } else if ( this->gl_data->glXSwapIntervalSGI ) {
297 rc = this->gl_data->glXSwapIntervalSGI(this->gl_config.swap_control);
300 this->gl_data->swap_interval = this->gl_config.swap_control;
304 SDL_SetError("X11 driver not configured with OpenGL");
314 void X11_GL_Shutdown(_THIS)
316 #if SDL_VIDEO_OPENGL_GLX
317 /* Clean up OpenGL */
319 this->gl_data->glXMakeCurrent(GFX_Display, None, NULL);
321 if (glx_context != NULL)
322 this->gl_data->glXDestroyContext(GFX_Display, glx_context);
327 #endif /* SDL_VIDEO_OPENGL_GLX */
330 #if SDL_VIDEO_OPENGL_GLX
332 /* Make the current context active */
333 int X11_GL_MakeCurrent(_THIS)
338 if ( ! this->gl_data->glXMakeCurrent(GFX_Display,
339 SDL_Window, glx_context) ) {
340 SDL_SetError("Unable to make GL context current");
343 XSync( GFX_Display, False );
345 /* More Voodoo X server workarounds... Grr... */
346 SDL_Lock_EventThread();
347 X11_CheckDGAMouse(this);
348 SDL_Unlock_EventThread();
353 /* Get attribute data from glX. */
354 int X11_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value)
358 int glx_attrib = None;
361 case SDL_GL_RED_SIZE:
362 glx_attrib = GLX_RED_SIZE;
364 case SDL_GL_GREEN_SIZE:
365 glx_attrib = GLX_GREEN_SIZE;
367 case SDL_GL_BLUE_SIZE:
368 glx_attrib = GLX_BLUE_SIZE;
370 case SDL_GL_ALPHA_SIZE:
371 glx_attrib = GLX_ALPHA_SIZE;
373 case SDL_GL_DOUBLEBUFFER:
374 glx_attrib = GLX_DOUBLEBUFFER;
376 case SDL_GL_BUFFER_SIZE:
377 glx_attrib = GLX_BUFFER_SIZE;
379 case SDL_GL_DEPTH_SIZE:
380 glx_attrib = GLX_DEPTH_SIZE;
382 case SDL_GL_STENCIL_SIZE:
383 glx_attrib = GLX_STENCIL_SIZE;
385 case SDL_GL_ACCUM_RED_SIZE:
386 glx_attrib = GLX_ACCUM_RED_SIZE;
388 case SDL_GL_ACCUM_GREEN_SIZE:
389 glx_attrib = GLX_ACCUM_GREEN_SIZE;
391 case SDL_GL_ACCUM_BLUE_SIZE:
392 glx_attrib = GLX_ACCUM_BLUE_SIZE;
394 case SDL_GL_ACCUM_ALPHA_SIZE:
395 glx_attrib = GLX_ACCUM_ALPHA_SIZE;
398 glx_attrib = GLX_STEREO;
400 case SDL_GL_MULTISAMPLEBUFFERS:
401 glx_attrib = GLX_SAMPLE_BUFFERS_ARB;
403 case SDL_GL_MULTISAMPLESAMPLES:
404 glx_attrib = GLX_SAMPLES_ARB;
406 case SDL_GL_ACCELERATED_VISUAL:
407 if ( glXExtensionSupported(this, "GLX_EXT_visual_rating") ) {
408 glx_attrib = GLX_VISUAL_CAVEAT_EXT;
409 retval = this->gl_data->glXGetConfig(GFX_Display, glx_visualinfo, glx_attrib, value);
410 if ( *value == GLX_SLOW_VISUAL_EXT ) {
420 case SDL_GL_SWAP_CONTROL:
421 if ( ( this->gl_data->glXSwapIntervalMESA ) ||
422 ( this->gl_data->glXSwapIntervalSGI ) ) {
423 *value = this->gl_data->swap_interval;
435 SDL_SetError("OpenGL attribute is unsupported on this system");
437 retval = this->gl_data->glXGetConfig(GFX_Display, glx_visualinfo, glx_attrib, value);
442 void X11_GL_SwapBuffers(_THIS)
444 this->gl_data->glXSwapBuffers(GFX_Display, SDL_Window);
447 #endif /* SDL_VIDEO_OPENGL_GLX */
449 #define OPENGL_REQUIRS_DLOPEN
450 #if defined(OPENGL_REQUIRS_DLOPEN) && defined(SDL_LOADSO_DLOPEN)
452 #define GL_LoadObject(X) dlopen(X, (RTLD_NOW|RTLD_GLOBAL))
453 #define GL_LoadFunction dlsym
454 #define GL_UnloadObject dlclose
456 #define GL_LoadObject SDL_LoadObject
457 #define GL_LoadFunction SDL_LoadFunction
458 #define GL_UnloadObject SDL_UnloadObject
461 void X11_GL_UnloadLibrary(_THIS)
463 #if SDL_VIDEO_OPENGL_GLX
464 if ( this->gl_config.driver_loaded ) {
466 GL_UnloadObject(this->gl_config.dll_handle);
468 this->gl_data->glXGetProcAddress = NULL;
469 this->gl_data->glXChooseVisual = NULL;
470 this->gl_data->glXCreateContext = NULL;
471 this->gl_data->glXDestroyContext = NULL;
472 this->gl_data->glXMakeCurrent = NULL;
473 this->gl_data->glXSwapBuffers = NULL;
474 this->gl_data->glXSwapIntervalSGI = NULL;
475 this->gl_data->glXSwapIntervalMESA = NULL;
477 this->gl_config.dll_handle = NULL;
478 this->gl_config.driver_loaded = 0;
483 #if SDL_VIDEO_OPENGL_GLX
485 /* Passing a NULL path means load pointers from the application */
486 int X11_GL_LoadLibrary(_THIS, const char* path)
491 SDL_SetError("OpenGL context already created");
495 if ( path == NULL ) {
496 path = SDL_getenv("SDL_VIDEO_GL_DRIVER");
497 if ( path == NULL ) {
498 path = DEFAULT_OPENGL;
502 handle = GL_LoadObject(path);
503 if ( handle == NULL ) {
504 #if defined(OPENGL_REQUIRS_DLOPEN) && defined(SDL_LOADSO_DLOPEN)
505 SDL_SetError("Failed loading %s", path);
507 /* SDL_LoadObject() will call SDL_SetError() for us. */
512 /* Unload the old driver and reset the pointers */
513 X11_GL_UnloadLibrary(this);
515 /* Load new function pointers */
516 this->gl_data->glXGetProcAddress =
517 (void *(*)(const GLubyte *)) GL_LoadFunction(handle, "glXGetProcAddressARB");
518 this->gl_data->glXChooseVisual =
519 (XVisualInfo *(*)(Display *, int, int *)) GL_LoadFunction(handle, "glXChooseVisual");
520 this->gl_data->glXCreateContext =
521 (GLXContext (*)(Display *, XVisualInfo *, GLXContext, int)) GL_LoadFunction(handle, "glXCreateContext");
522 this->gl_data->glXDestroyContext =
523 (void (*)(Display *, GLXContext)) GL_LoadFunction(handle, "glXDestroyContext");
524 this->gl_data->glXMakeCurrent =
525 (int (*)(Display *, GLXDrawable, GLXContext)) GL_LoadFunction(handle, "glXMakeCurrent");
526 this->gl_data->glXSwapBuffers =
527 (void (*)(Display *, GLXDrawable)) GL_LoadFunction(handle, "glXSwapBuffers");
528 this->gl_data->glXGetConfig =
529 (int (*)(Display *, XVisualInfo *, int, int *)) GL_LoadFunction(handle, "glXGetConfig");
530 this->gl_data->glXQueryExtensionsString =
531 (const char *(*)(Display *, int)) GL_LoadFunction(handle, "glXQueryExtensionsString");
532 this->gl_data->glXSwapIntervalSGI =
533 (int (*)(int)) GL_LoadFunction(handle, "glXSwapIntervalSGI");
534 this->gl_data->glXSwapIntervalMESA =
535 (GLint (*)(unsigned)) GL_LoadFunction(handle, "glXSwapIntervalMESA");
537 if ( (this->gl_data->glXChooseVisual == NULL) ||
538 (this->gl_data->glXCreateContext == NULL) ||
539 (this->gl_data->glXDestroyContext == NULL) ||
540 (this->gl_data->glXMakeCurrent == NULL) ||
541 (this->gl_data->glXSwapBuffers == NULL) ||
542 (this->gl_data->glXGetConfig == NULL) ||
543 (this->gl_data->glXQueryExtensionsString == NULL)) {
544 SDL_SetError("Could not retrieve OpenGL functions");
548 this->gl_config.dll_handle = handle;
549 this->gl_config.driver_loaded = 1;
551 SDL_strlcpy(this->gl_config.driver_path, path,
552 SDL_arraysize(this->gl_config.driver_path));
554 *this->gl_config.driver_path = '\0';
559 void *X11_GL_GetProcAddress(_THIS, const char* proc)
563 handle = this->gl_config.dll_handle;
564 if ( this->gl_data->glXGetProcAddress ) {
565 return this->gl_data->glXGetProcAddress((const GLubyte *)proc);
567 return GL_LoadFunction(handle, proc);
570 #endif /* SDL_VIDEO_OPENGL_GLX */