Module: Mesa Branch: master Commit: 817051ab5b71b2c00e20f1b92ccf69c71e7ab70e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=817051ab5b71b2c00e20f1b92ccf69c71e7ab70e
Author: Neil Roberts <[email protected]> Date: Thu Jul 17 14:45:01 2014 +0100 swrast: Enable GL_ARB_texture_compression_bptc Enables BPTC texture compression on the software rasterizer. Reviewed-by: Ian Romanick <[email protected]> --- src/mesa/main/extensions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index b8090e6..4f322d0 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -450,6 +450,7 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) ctx->Extensions.ARB_point_sprite = GL_TRUE; ctx->Extensions.ARB_shadow = GL_TRUE; ctx->Extensions.ARB_texture_border_clamp = GL_TRUE; + ctx->Extensions.ARB_texture_compression_bptc = GL_TRUE; ctx->Extensions.ARB_texture_cube_map = GL_TRUE; ctx->Extensions.ARB_texture_env_combine = GL_TRUE; ctx->Extensions.ARB_texture_env_crossbar = GL_TRUE; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
