glx: use a block to fix declarations after code warning

This commit is contained in:
Brian Paul
2011-08-19 08:36:22 -06:00
parent e330d90e91
commit e975e18beb

View File

@@ -794,15 +794,17 @@ glXSwapBuffers(Display * dpy, GLXDrawable drawable)
gc = __glXGetCurrentContext();
#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
__GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable);
{
__GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable);
if (pdraw != NULL) {
if (gc && drawable == gc->currentDrawable) {
glFlush();
if (pdraw != NULL) {
if (gc && drawable == gc->currentDrawable) {
glFlush();
}
(*pdraw->psc->driScreen->swapBuffers)(pdraw, 0, 0, 0);
return;
}
(*pdraw->psc->driScreen->swapBuffers)(pdraw, 0, 0, 0);
return;
}
#endif