Module: Mesa Branch: master Commit: a59ae25d81728e572568e64fe1ab72ef834044b6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a59ae25d81728e572568e64fe1ab72ef834044b6
Author: Rico Schüller <[email protected]> Date: Sun Oct 20 12:39:56 2013 +0200 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]> --- 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 bf8d7a3..e8e0a20 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; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
