summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Roberts <[email protected]>2014-07-17 14:45:01 +0100
committerNeil Roberts <[email protected]>2014-08-12 18:23:50 +0100
commit817051ab5b71b2c00e20f1b92ccf69c71e7ab70e (patch)
tree5ed0829a6b26d489b5f096ed038e83b8b4fbd5a9
parent9782b8a80c1fbb41246f6ae94ac2944a91aa70da (diff)
swrast: Enable GL_ARB_texture_compression_bptc
Enables BPTC texture compression on the software rasterizer. Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r--src/mesa/main/extensions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index b8090e65c62..4f322d0e22e 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;