Mesa (master): glx: Add the extension string for GLX_ARB_framebuffer_sRGB

Ian Romanick idr at kemper.freedesktop.org
Mon Oct 29 16:59:01 UTC 2012


Module: Mesa
Branch: master
Commit: 386282b5c2411e0c131ac787584e501e657e26ab
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=386282b5c2411e0c131ac787584e501e657e26ab

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Thu Jul 12 14:07:14 2012 -0700

glx: Add the extension string for GLX_ARB_framebuffer_sRGB

>From the GLX perspective, the ARB and EXT extensions are identical.  Use
a single bit for both.

Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
Reviewed-by: Eric Anholt <eric at anholt.net>
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
Cc: Maciej Wieczorek <maciej.t.wieczorek at intel.com>

---

 src/glx/glxextensions.c |    1 +
 src/glx/glxextensions.h |    5 +++++
 2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/glx/glxextensions.c b/src/glx/glxextensions.c
index 9332e61..caa6d99 100644
--- a/src/glx/glxextensions.c
+++ b/src/glx/glxextensions.c
@@ -74,6 +74,7 @@ static const struct extension_info known_glx_extensions[] = {
    { GLX(ARB_create_context),          VER(0,0), Y, N, N, N },
    { GLX(ARB_create_context_profile),  VER(0,0), Y, N, N, N },
    { GLX(ARB_create_context_robustness), VER(0,0), Y, N, N, N },
+   { GLX(ARB_framebuffer_sRGB),        VER(0,0), Y, Y, N, N },
    { GLX(ARB_get_proc_address),        VER(1,4), Y, N, Y, N },
    { GLX(ARB_multisample),             VER(1,4), Y, Y, N, N },
    { GLX(ATI_pixel_format_float),      VER(0,0), N, N, N, N },
diff --git a/src/glx/glxextensions.h b/src/glx/glxextensions.h
index 90c27a7..3c5d407 100644
--- a/src/glx/glxextensions.h
+++ b/src/glx/glxextensions.h
@@ -65,6 +65,11 @@ enum
    INTEL_swap_event_bit,
 };
 
+/* From the GLX perspective, the ARB and EXT extensions are identical.  Use a
+ * single bit for both.
+ */
+#define ARB_framebuffer_sRGB_bit EXT_framebuffer_sRGB_bit
+
 enum
 {
    GL_ARB_depth_texture_bit = 0,




More information about the mesa-commit mailing list