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/drivers/dri/r600/r600_context.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/drivers/dri/r600/r600_context.c')
-rw-r--r-- | src/mesa/drivers/dri/r600/r600_context.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r600/r600_context.c b/src/mesa/drivers/dri/r600/r600_context.c index 9da8a72d57f..c2f9cbd39f9 100644 --- a/src/mesa/drivers/dri/r600/r600_context.c +++ b/src/mesa/drivers/dri/r600/r600_context.c @@ -269,7 +269,6 @@ static void r600InitGLExtensions(struct gl_context *ctx) ctx->Extensions.ARB_texture_env_combine = true; ctx->Extensions.ARB_texture_env_crossbar = true; ctx->Extensions.ARB_texture_env_dot3 = true; - ctx->Extensions.ARB_texture_mirrored_repeat = true; ctx->Extensions.ARB_texture_non_power_of_two = true; ctx->Extensions.ARB_vertex_program = true; ctx->Extensions.EXT_blend_color = true; |