summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/extensions.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2011-04-26 02:18:24 +0200
committerMarek Olšák <[email protected]>2011-04-29 11:31:55 +0200
commit9d7698c468f4ea7da8bb4ec00520c98f11cca0fa (patch)
treeda4a82690218f5a3c78f0961e4ca105ff3bc20ed /src/mesa/main/extensions.c
parent1d5f16ff8fae936f2e920800b169cf7736a8052a (diff)
mesa: implement EXT_texture_shared_exponent
swrast support done. There is no renderbuffer support in swrast, because it's not required by the extension. Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-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 82474cf4124..e0562cc1f45 100644
--- a/src/mesa/main/extensions.c
+++ b/src/mesa/main/extensions.c
@@ -502,6 +502,7 @@ _mesa_enable_sw_extensions(struct gl_context *ctx)
ctx->Extensions.EXT_texture_env_dot3 = GL_TRUE;
ctx->Extensions.EXT_texture_mirror_clamp = GL_TRUE;
ctx->Extensions.EXT_texture_lod_bias = GL_TRUE;
+ ctx->Extensions.EXT_texture_shared_exponent = GL_TRUE;
#if FEATURE_EXT_texture_sRGB
ctx->Extensions.EXT_texture_sRGB = GL_TRUE;
ctx->Extensions.EXT_texture_sRGB_decode = GL_TRUE;