[Mesa-dev] [PATCH 1/8] glx: Set sRGBCapable to a default value
Ian Romanick
idr at freedesktop.org
Wed Oct 24 10:08:40 PDT 2012
From: Ian Romanick <ian.d.romanick at intel.com>
Previously, if the server didn't send a GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT
tag, it would still be set to GLX_DONT_CARE (which is -1). Set it to
GL_FALSE instead.
NOTE: This is a candidate for stable release branches.
Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
Cc: Maciej Wieczorek <maciej.t.wieczorek at intel.com>
---
src/glx/glxext.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/glx/glxext.c b/src/glx/glxext.c
index e55c1c1..ef1e7ad 100644
--- a/src/glx/glxext.c
+++ b/src/glx/glxext.c
@@ -374,6 +374,8 @@ __glXInitializeVisualConfigFromTags(struct glx_config * config, int count,
#endif
}
+ config->sRGBCapable = GL_FALSE;
+
/*
** Additional properties may be in a list at the end
** of the reply. They are in pairs of property type
--
1.7.11.4
More information about the mesa-dev
mailing list