diff options
author | Brian Paul <[email protected]> | 2010-02-25 19:48:57 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-25 20:11:55 -0700 |
commit | 4db9f8361207e9377eb772df8d16413d63f55636 (patch) | |
tree | 986b745df057e4a04d783523f7105e30ddd4550c /src/mesa | |
parent | 1f2b495b5567897acbd236f302a1e2b9b5faec65 (diff) |
mesa: enable GL_EXT_texture_array for sw drivers
Diffstat (limited to 'src/mesa')
-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 44190c77324..0e7e52a54ac 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -305,6 +305,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) ctx->Extensions.EXT_shared_texture_palette = GL_TRUE; ctx->Extensions.EXT_stencil_wrap = GL_TRUE; ctx->Extensions.EXT_stencil_two_side = GL_TRUE; + ctx->Extensions.EXT_texture_array = GL_TRUE; ctx->Extensions.EXT_texture_env_add = GL_TRUE; ctx->Extensions.EXT_texture_env_combine = GL_TRUE; ctx->Extensions.EXT_texture_env_dot3 = GL_TRUE; |