From: Brian Paul Date: Fri, 26 Feb 2010 02:48:57 +0000 (-0700) Subject: mesa: enable GL_EXT_texture_array for sw drivers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4db9f8361207e9377eb772df8d16413d63f55636;p=mesa.git mesa: enable GL_EXT_texture_array for sw drivers --- 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;