diff options
author | Rico Schüller <[email protected]> | 2013-10-20 12:39:56 +0200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-10-20 20:12:39 -0700 |
commit | a59ae25d81728e572568e64fe1ab72ef834044b6 (patch) | |
tree | 31a2ad2b1cc9598c47f7b09dff5a6b4ffde1cc9e | |
parent | 1bbd3bb98a90dc38679566083fd72d7480c7df00 (diff) |
swrast: Enable ARB_texture_mirror_clamp_to_edge.
v2: fix commit message
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Signed-off-by: Rico Schüller <[email protected]>
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index bf8d7a36b8b..e8e0a20d8b2 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -408,6 +408,7 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) #ifdef TEXTURE_FLOAT_ENABLED ctx->Extensions.ARB_texture_float = GL_TRUE; #endif + ctx->Extensions.ARB_texture_mirror_clamp_to_edge = GL_TRUE; ctx->Extensions.ARB_texture_non_power_of_two = GL_TRUE; ctx->Extensions.ARB_texture_rg = GL_TRUE; ctx->Extensions.ARB_texture_compression_rgtc = GL_TRUE; |