diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-09-05 21:16:30 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-09-05 21:16:30 +0000 |
commit | 3a03211aeeec5f5232a711f2f0887a93be4013e2 (patch) | |
tree | a1213f26fa8a3ffea66b8599d2b2764ac14b47f5 /src/mesa | |
parent | e7abc078ab09525f449911c428c8892037d9bf21 (diff) |
added GL_IBM_texture_mirrored_repeat (Ian Romanick)
Diffstat (limited to 'src/mesa')
-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 ad2807401b..dce0be620c 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.76 2002/06/29 20:03:13 brianp Exp $ */ +/* $Id: extensions.c,v 1.77 2002/09/05 21:16:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -108,6 +108,7 @@ static struct { { OFF, "GL_EXT_vertex_array_set", F(EXT_vertex_array_set) }, { OFF, "GL_HP_occlusion_test", F(HP_occlusion_test) }, { ON, "GL_IBM_rasterpos_clip", F(IBM_rasterpos_clip) }, + { OFF, "GL_IBM_texture_mirrored_repeat", F(ARB_texture_mirrored_repeat)}, { OFF, "GL_INGR_blend_func_separate", F(INGR_blend_func_separate) }, { OFF, "GL_MESA_packed_depth_stencil", 0 }, { OFF, "GL_MESA_resize_buffers", F(MESA_resize_buffers) }, @@ -175,6 +176,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) "GL_EXT_texture_env_dot3", "GL_EXT_texture_lod_bias", "GL_HP_occlusion_test", + "GL_IBM_texture_mirrored_repeat", "GL_INGR_blend_func_separate", "GL_MESA_resize_buffers", "GL_NV_blend_square", |