Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Check correct glX extension name for swap_control, but it doesn't loo…
…k like

 we ever actually look up the symbol...that's probably a bug.  :/
  • Loading branch information
icculus committed May 22, 2007
1 parent 71d69d8 commit 292f15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11gl.c
Expand Up @@ -269,7 +269,7 @@ int X11_GL_CreateContext(_THIS)
}
gl_active = 1;

if ( !glXExtensionSupported(this, "SGI_swap_control") ) {
if ( !glXExtensionSupported(this, "GLX_SGI_swap_control") ) {
this->gl_data->glXSwapIntervalSGI = NULL;
}
if ( !glXExtensionSupported(this, "GLX_MESA_swap_control") ) {
Expand Down

0 comments on commit 292f15a

Please sign in to comment.