i965: Enable EWA anisotropic filtering algorithm
authorIan Romanick <ian.d.romanick@intel.com>
Tue, 4 Mar 2014 09:08:05 +0000 (11:08 +0200)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 18 Mar 2014 17:56:38 +0000 (10:56 -0700)
Volume 4, part 1 of the Ivybridge PRM says, "Generally, the EWA
approximation algorithm results in higher image quality than the legacy
algorithm."  Using a classic anisotropic filtering "tunnel" demo, it
appears that there is *no* anisotropic filtering on IVB without this bit
set.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/gen7_sampler_state.c

index 968c410345e1b261a785591848d8d1a0a54f55db..709a783f141957df1286ba8507fa08cb26dae9b9 100644 (file)
@@ -82,6 +82,7 @@ gen7_update_sampler_state(struct brw_context *brw, int unit, int ss_index,
    if (gl_sampler->MaxAnisotropy > 1.0) {
       sampler->ss0.min_filter = BRW_MAPFILTER_ANISOTROPIC;
       sampler->ss0.mag_filter = BRW_MAPFILTER_ANISOTROPIC;
+      sampler->ss0.aniso_algorithm = 1;
 
       if (gl_sampler->MaxAnisotropy > 2.0) {
         sampler->ss3.max_aniso = MIN2((gl_sampler->MaxAnisotropy - 2) / 2,