diff options
author | Andreas Faenger <[email protected]> | 2011-05-18 08:14:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-05-18 08:14:33 -0600 |
commit | 8a98aabe0bcea42cfdc982001ae4876e3d9b1214 (patch) | |
tree | 2802b7b6975dac6f42243ee7ad01476cd9ebbb87 /src/mesa/main/extensions.c | |
parent | 707eadcb7f603e803978a541a16e9893663c33e2 (diff) |
swrast: anisotropic filtering extension
Anisotropic filtering extension for swrast intended to be used by osmesa
to create high quality renderings.
Based on Higher Quality Elliptical Weighted Avarage Filter (EWA).
A 2nd implementation using footprint assembly is also provided.
Signed-off-by: Brian Paul <[email protected]>
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 8672ac2a730..bc61c50a90f 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -503,6 +503,7 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) ctx->Extensions.EXT_texture_env_add = GL_TRUE; ctx->Extensions.EXT_texture_env_combine = GL_TRUE; ctx->Extensions.EXT_texture_env_dot3 = GL_TRUE; + ctx->Extensions.EXT_texture_filter_anisotropic = 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; |