diff src/video/x11/SDL_x11opengl.c @ 1954:c20e158a9299

Don't unload the OpenGL library before the X display is closed.
author Sam Lantinga <slouken@libsdl.org>
date Sat, 29 Jul 2006 03:56:35 +0000
parents 214880ed48c3
children 8c6106e45fc1
line wrap: on
line diff
--- a/src/video/x11/SDL_x11opengl.c	Fri Jul 28 08:46:24 2006 +0000
+++ b/src/video/x11/SDL_x11opengl.c	Sat Jul 29 03:56:35 2006 +0000
@@ -288,7 +288,11 @@
         return;
     }
 
-    X11_GL_UnloadLibrary(_this);
+    /* Don't actually unload the library, since it may have registered
+     * X11 shutdown hooks, per the notes at:
+     * http://dri.sourceforge.net/doc/DRIuserguide.html
+     * //X11_GL_UnloadLibrary(_this);
+     */
 
     SDL_free(_this->gl_data);
     _this->gl_data = NULL;