diff options
author | Ian Romanick <[email protected]> | 2011-08-30 18:04:41 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-29 10:41:04 -0700 |
commit | ed48df84246caa40398ccd6a822cbd9b650f8282 (patch) | |
tree | 9312c650399a0f6553194478579e30455cf38d19 /src/mesa/main/texparam.c | |
parent | b0824bd860f6d4b3ad28fc142c2eebd840ed6173 (diff) |
mesa: Remove ARB_texture_mirrored_repeat extension enable flag
All drivers remaining in Mesa support this extension. This extension
is either required or optional features in desktop OpenGL, OpenGL ES
1.x, and OpenGL ES 2.x.
This extension was previously not supported on mach64, mga, and savage
(Savage3D and other pre-Savage4).
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/texparam.c')
-rw-r--r-- | src/mesa/main/texparam.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index d2df44d13ff..f232cfc8633 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -62,8 +62,7 @@ validate_texture_wrap_mode(struct gl_context * ctx, GLenum target, GLenum wrap) } else if (target != GL_TEXTURE_RECTANGLE_NV && (wrap == GL_REPEAT || - (wrap == GL_MIRRORED_REPEAT && - e->ARB_texture_mirrored_repeat) || + wrap == GL_MIRRORED_REPEAT || (wrap == GL_MIRROR_CLAMP_EXT && (e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp)) || (wrap == GL_MIRROR_CLAMP_TO_EDGE_EXT && |