comparison src/video/x11/SDL_x11opengl.c @ 2105:12bcd4fd2606

Date: Wed, 23 May 2007 00:39:47 +0300 From: "Eyal Lotem" To: "SDL Mailing List" <sdl@lists.libsdl.org> Subject: [SDL] Bug in GL_SWAP_CONTROL extension name. The checked extension name is incorrect. The attached patch fixes it to the correct name. I don't think that under any setup, this extension name was ever correct, which is why its not OR'd against the old check. This fixes the "tear effect" (vsync problems) I had here with nVidia GLX drivers. Eyal
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 22 May 2007 22:13:56 +0000
parents ba0d62354872
children 114a541cfae2
comparison
equal deleted inserted replaced
2104:a76e8b9f3d2e 2105:12bcd4fd2606
222 } else { 222 } else {
223 extensions = NULL; 223 extensions = NULL;
224 } 224 }
225 225
226 /* Check for SGI_swap_control */ 226 /* Check for SGI_swap_control */
227 if (HasExtension("SGI_swap_control", extensions)) { 227 if (HasExtension("GLX_SGI_swap_control", extensions)) {
228 _this->gl_data->glXSwapIntervalSGI = 228 _this->gl_data->glXSwapIntervalSGI =
229 (int (*)(int)) X11_GL_GetProcAddress(_this, "glXSwapIntervalSGI"); 229 (int (*)(int)) X11_GL_GetProcAddress(_this, "glXSwapIntervalSGI");
230 } 230 }
231 231
232 /* Check for GLX_MESA_swap_control */ 232 /* Check for GLX_MESA_swap_control */