Commit 4fbac0bf authored by Ryan C. Gordon's avatar Ryan C. Gordon

Check correct glX extension name for swap_control, but it doesn't look like

 we ever actually look up the symbol...that's probably a bug.  :/

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402312
parent a144a3d0
...@@ -269,7 +269,7 @@ int X11_GL_CreateContext(_THIS) ...@@ -269,7 +269,7 @@ int X11_GL_CreateContext(_THIS)
} }
gl_active = 1; gl_active = 1;
if ( !glXExtensionSupported(this, "SGI_swap_control") ) { if ( !glXExtensionSupported(this, "GLX_SGI_swap_control") ) {
this->gl_data->glXSwapIntervalSGI = NULL; this->gl_data->glXSwapIntervalSGI = NULL;
} }
if ( !glXExtensionSupported(this, "GLX_MESA_swap_control") ) { if ( !glXExtensionSupported(this, "GLX_MESA_swap_control") ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment