diff options
author | Brian Paul <[email protected]> | 2001-05-21 16:41:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-05-21 16:41:03 +0000 |
commit | 3893e638e6521b9c070e01c0b31d22754ff97a88 (patch) | |
tree | f92282e8466199dd45c72e6725c3fa0263bae2e0 /src/mesa/main/extensions.c | |
parent | e7e38a47a8dd567fd5a848cbef09b14018fb2fe0 (diff) |
initial support for GL_SGIS_generate_mipmap extension
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 3a082678149..8faeb090963 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.58 2001/04/24 21:52:36 brianp Exp $ */ +/* $Id: extensions.c,v 1.59 2001/05/21 16:41:03 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -106,6 +106,7 @@ static struct { { ON, "GL_NV_texgen_reflection", F(NV_texgen_reflection) }, { OFF, "GL_SGI_color_matrix", F(SGI_color_matrix) }, { OFF, "GL_SGI_color_table", F(SGI_color_table) }, + /*{ OFF, "GL_SGIS_generate_mipmap", F(SGIS_generate_mipmap) },*/ { OFF, "GL_SGIS_pixel_texture", F(SGIS_pixel_texture) }, { OFF, "GL_SGIS_texture_border_clamp", F(ARB_texture_border_clamp) }, { OFF, "GL_SGIS_texture_edge_clamp", F(SGIS_texture_edge_clamp) }, @@ -158,6 +159,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) "GL_NV_texgen_reflection", "GL_SGI_color_matrix", "GL_SGI_color_table", + "GL_SGIS_generate_mipmap", "GL_SGIS_pixel_texture", "GL_SGIS_texture_edge_clamp", "GL_SGIS_texture_border_clamp", |