From c6dc8b64e751dd8c45c4f7d5d03114a0da4e7fe3 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 1 Mar 2013 11:27:01 -0800 Subject: [PATCH] Remove XSync from X11_GL_MakeCurrent() function --- src/video/x11/SDL_x11opengl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/video/x11/SDL_x11opengl.c b/src/video/x11/SDL_x11opengl.c index 0c3ab5065..43760d0b1 100644 --- a/src/video/x11/SDL_x11opengl.c +++ b/src/video/x11/SDL_x11opengl.c @@ -642,7 +642,6 @@ X11_GL_MakeCurrent(_THIS, SDL_Window * window, SDL_GLContext context) SDL_SetError("Unable to make GL context current"); status = -1; } - XSync(display, False); return (status); }