diff options
author | Adam Jackson <ajax@redhat.com> | 2017-08-24 14:40:32 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2017-08-25 12:38:01 -0400 |
commit | 00caf2ab088dd2e08ce410850dee61ba2b9aa63a (patch) | |
tree | c7432e339a4c24610faeca1df370a2305206f1db /src/glx/glxextensions.c | |
parent | ddc9b4e823a9e788f530a17dcf260dcc9f26a156 (diff) |
mesa: Implement GL_ARB_texture_filter_anisotropic
The only difference from the EXT version is bumping the minmax to 16, so
just hit all the drivers at once.
v2: Fix driver names, add to 17.3 release notes (Ilia Mirkin)
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/glx/glxextensions.c')
-rw-r--r-- | src/glx/glxextensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glx/glxextensions.c b/src/glx/glxextensions.c index 22b078ce48..88bf0de3e6 100644 --- a/src/glx/glxextensions.c +++ b/src/glx/glxextensions.c @@ -190,6 +190,7 @@ static const struct extension_info known_gl_extensions[] = { { GL(ARB_texture_env_combine), VER(1,3), Y, N, N, N }, { GL(ARB_texture_env_crossbar), VER(1,4), Y, N, N, N }, { GL(ARB_texture_env_dot3), VER(1,3), Y, N, N, N }, + { GL(ARB_texture_filter_anisotropic), VER(0,0), Y, N, N, N }, { GL(ARB_texture_mirrored_repeat), VER(1,4), Y, N, N, N }, { GL(ARB_texture_non_power_of_two), VER(1,5), Y, N, N, N }, { GL(ARB_texture_rectangle), VER(0,0), Y, N, N, N }, |