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>
This commit is contained in:
@@ -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 },
|
||||
|
||||
@@ -101,6 +101,7 @@ enum
|
||||
GL_ARB_texture_env_combine_bit,
|
||||
GL_ARB_texture_env_crossbar_bit,
|
||||
GL_ARB_texture_env_dot3_bit,
|
||||
GL_ARB_texture_filter_anisotropic_bit,
|
||||
GL_ARB_texture_mirrored_repeat_bit,
|
||||
GL_ARB_texture_non_power_of_two_bit,
|
||||
GL_ARB_texture_rectangle_bit,
|
||||
@@ -150,7 +151,6 @@ enum
|
||||
GL_EXT_texture_edge_clamp_bit,
|
||||
GL_EXT_texture_env_combine_bit,
|
||||
GL_EXT_texture_env_dot3_bit,
|
||||
GL_EXT_texture_filter_anisotropic_bit,
|
||||
GL_EXT_texture_integer_bit,
|
||||
GL_EXT_texture_lod_bit,
|
||||
GL_EXT_texture_lod_bias_bit,
|
||||
@@ -223,11 +223,10 @@ enum
|
||||
|
||||
/* Alias extension bits. These extensions exist in either vendor-specific
|
||||
* or EXT form and were later promoted to either EXT or ARB form. In all
|
||||
* cases, the meaning is *exactly* the same. That's why
|
||||
* cases, the meaning (to GLX) is *exactly* the same. That's why
|
||||
* EXT_texture_env_combine is *NOT* an alias of ARB_texture_env_combine and
|
||||
* EXT_texture_env_dot3 is *NOT* an alias of ARB_texture_env_dot3. Be
|
||||
* careful! When in doubt, src/mesa/main/extensions.c in the Mesa tree
|
||||
* is a great reference.
|
||||
* careful! When in doubt, src/mesa/main/extensions.c is a great reference.
|
||||
*/
|
||||
|
||||
GL_ATI_blend_equation_separate_bit = GL_EXT_blend_equation_separate_bit,
|
||||
@@ -235,6 +234,7 @@ enum
|
||||
GL_ATIX_texture_env_combine3_bit = GL_ATI_texture_env_combine3_bit,
|
||||
GL_EXT_point_parameters_bit = GL_ARB_point_parameters_bit,
|
||||
GL_EXT_texture_env_add_bit = GL_ARB_texture_env_add_bit,
|
||||
GL_EXT_texture_filter_anisotropic_bit = GL_ARB_texture_filter_anisotropic_bit,
|
||||
GL_EXT_texture_rectangle_bit = GL_ARB_texture_rectangle_bit,
|
||||
GL_IBM_texture_mirrored_repeat_bit = GL_ARB_texture_mirrored_repeat_bit,
|
||||
GL_INGR_blend_func_separate_bit = GL_EXT_blend_func_separate_bit,
|
||||
|
||||
Reference in New Issue
Block a user