X11: Always specify "True" if setting GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB.

Fixes Bugzilla #2897.
This commit is contained in:
Ryan C. Gordon 2015-04-06 00:11:58 -04:00
parent 83aeb31d12
commit f3590aba15

View File

@ -474,9 +474,7 @@ X11_GL_GetAttributes(_THIS, Display * display, int screen, int * attribs, int si
if (_this->gl_config.framebuffer_srgb_capable) { if (_this->gl_config.framebuffer_srgb_capable) {
attribs[i++] = GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB; attribs[i++] = GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB;
if( for_FBConfig ) { attribs[i++] = True; /* always needed, for_FBConfig or not! */
attribs[i++] = True;
}
} }
if (_this->gl_config.accelerated >= 0 && if (_this->gl_config.accelerated >= 0 &&