glx: Add the extension string for GLX_ARB_framebuffer_sRGB
authorIan Romanick <ian.d.romanick@intel.com>
Thu, 12 Jul 2012 21:07:14 +0000 (14:07 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Mon, 29 Oct 2012 16:55:23 +0000 (09:55 -0700)
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@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Cc: Maciej Wieczorek <maciej.t.wieczorek@intel.com>
src/glx/glxextensions.c
src/glx/glxextensions.h

index 9332e61b427dff948b257f579179d4812854a0cb..caa6d9939db37039f8f2e984b2d8cde89995d066 100644 (file)
@@ -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 },
index 90c27a7db41fa10cefb508144cdd540c0f31068f..3c5d407b8073e610c8fb8f523f891fe2269fee3b 100644 (file)
@@ -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,