From: Rico Schüller Date: Sun, 20 Oct 2013 10:39:56 +0000 (+0200) Subject: swrast: Enable ARB_texture_mirror_clamp_to_edge. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a59ae25d81728e572568e64fe1ab72ef834044b6;p=mesa.git swrast: Enable ARB_texture_mirror_clamp_to_edge. v2: fix commit message Reviewed-by: Marek Olšák Reviewed-by: Kenneth Graunke Reviewed-by: Ian Romanick Signed-off-by: Rico Schüller --- 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;