diff options
author | Brian Paul <[email protected]> | 2001-10-17 13:31:07 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-10-17 13:31:07 +0000 |
commit | e11f089f821ea90754d8cbe56278eba4cf5665f4 (patch) | |
tree | a4a6e49a2fc7f250328ccfdf7bd62ce4be9b3e65 /src/mesa/main/extensions.c | |
parent | 470d3cd4a2c49a36babfc66933140d57535d724f (diff) |
added GL_ARB_texture_mirrored_repeat
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 7e96b9e1b5e..8b7de99fd91 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.64 2001/08/13 18:09:34 brianp Exp $ */ +/* $Id: extensions.c,v 1.65 2001/10/17 13:31:07 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -65,6 +65,7 @@ static struct { { OFF, "GL_ARB_texture_env_add", F(EXT_texture_env_add) }, { OFF, "GL_ARB_texture_env_combine", F(ARB_texture_env_combine) }, { OFF, "GL_ARB_texture_env_dot3", F(ARB_texture_env_dot3) }, + { OFF, "GL_ARB_texture_mirrored_repeat", F(ARB_texture_mirrored_repeat)}, { ON, "GL_ARB_transpose_matrix", 0 }, { ON, "GL_EXT_abgr", 0 }, { ON, "GL_EXT_bgra", 0 }, @@ -138,6 +139,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) "GL_ARB_texture_env_add", "GL_ARB_texture_env_combine", "GL_ARB_texture_env_dot3", + "GL_ARB_texture_mirrored_repeat", "GL_EXT_blend_color", "GL_EXT_blend_func_separate", "GL_EXT_blend_logic_op", |