diff options
author | Ian Romanick <[email protected]> | 2005-02-03 00:38:40 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-02-03 00:38:40 +0000 |
commit | 94a20cbadfb5266d1acbb0597dba16aacfa1fe32 (patch) | |
tree | 81748e41fe28bfb3051dfc9b11a946a4dace7f19 /src/glx | |
parent | eba5b610b9d0c782e669efafa7ee1b785ce3254d (diff) |
Added a bunch of extensions that were previously supported but weren't
in the gl_API.xml database. Add "official" support for SGI_color_matrix
and SGI_texture_color_table. These were previously supported only by
way of ARB_imaging.
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/x11/glxextensions.c | 2 | ||||
-rw-r--r-- | src/glx/x11/glxextensions.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/glx/x11/glxextensions.c b/src/glx/x11/glxextensions.c index ffc596db183..78a2b075dbc 100644 --- a/src/glx/x11/glxextensions.c +++ b/src/glx/x11/glxextensions.c @@ -209,6 +209,8 @@ static const struct extension_info known_gl_extensions[] = { { GL(NV_texture_env_combine4), VER(0,0), Y, N, N, N }, { GL(NV_texture_rectangle), VER(0,0), Y, N, N, N }, { GL(OES_read_format), VER(0,0), Y, N, N, N }, + { GL(SGI_color_matrix), VER(0,0), Y, N, N, N }, + { GL(SGI_texture_color_table), VER(0,0), Y, N, N, N }, { GL(SGIS_generate_mipmap), VER(1,4), Y, N, N, N }, { GL(SGIS_multisample), VER(0,0), Y, N, N, N }, { GL(SGIS_texture_border_clamp), VER(1,3), Y, N, N, N }, diff --git a/src/glx/x11/glxextensions.h b/src/glx/x11/glxextensions.h index 5821550f65b..e725ad77875 100644 --- a/src/glx/x11/glxextensions.h +++ b/src/glx/x11/glxextensions.h @@ -165,6 +165,8 @@ enum { GL_NV_texture_compression_vtc_bit, GL_NV_texture_env_combine4_bit, GL_OES_read_format_bit, + GL_SGI_color_matrix_bit, + GL_SGI_texture_color_table_bit, GL_SGIS_generate_mipmap_bit, GL_SGIS_multisample_bit, GL_SGIS_texture_lod_bit, |