diff options
author | Brian Paul <[email protected]> | 2011-10-31 10:52:57 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-31 10:52:57 -0600 |
commit | 12d69fca096facf0ddb4642faaed4d5f02d76848 (patch) | |
tree | bbc6ab14015b8f75141e87c74eb2fcf40223ea47 /src/mesa/main/extensions.c | |
parent | e0a0496971dfd6c0f22b3870e6320128fa895d4d (diff) |
swrast: implement GL_ARB_texture_storage
Diffstat (limited to 'src/mesa/main/extensions.c')
-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 14f6f1f3afa..b0fe4c34702 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -422,6 +422,7 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) 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; + ctx->Extensions.ARB_texture_storage = GL_TRUE; ctx->Extensions.ARB_vertex_array_object = GL_TRUE; #if FEATURE_ARB_vertex_program ctx->Extensions.ARB_vertex_program = GL_TRUE; |