diff options
author | Ian Romanick <[email protected]> | 2011-08-22 19:00:04 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-26 12:14:12 -0700 |
commit | 5e4f42b0170416523b42dd89aa377fa2117bb3c4 (patch) | |
tree | 156147b84ae29b6974dc9204ee8452725632c10e /src/mesa/drivers/dri/r600 | |
parent | 8bd27a5b080157cb1d5fc0383ce45574c7b16aa5 (diff) |
dri: Remove redundant GL_SGIS_texture_edge_clamp enables
This extension is enabled by default in _mesa_init_extensions, so
drivers don't need to enable it again.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/r600')
-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 b57e1fe3a01..247d5510156 100644 --- a/src/mesa/drivers/dri/r600/r600_context.c +++ b/src/mesa/drivers/dri/r600/r600_context.c @@ -306,7 +306,6 @@ static void r600InitGLExtensions(struct gl_context *ctx) #if FEATURE_OES_EGL_image ctx->Extensions.OES_EGL_image = true; #endif - ctx->Extensions.SGIS_texture_edge_clamp = true; if (r600->radeon.radeonScreen->kernel_mm) ctx->Extensions.EXT_framebuffer_object = true; |