diff options
author | Eero Tamminen <[email protected]> | 2017-06-27 10:37:16 -0700 |
---|---|---|
committer | Rafael Antognolli <[email protected]> | 2017-06-28 13:33:28 -0700 |
commit | c35fd58688fd8c0c421c35b28419d20befdcb8b9 (patch) | |
tree | ff68b94298b28f844c099b9062ef0b7e1919b349 | |
parent | ec43605189907fa327a4a7f457aa3c822cfdea5d (diff) |
i965: Fix anisotropic filtering for mag filter
Commit f8d69beed49c64f883bb8ffb28d4960306baf575 moving sampler
handling to genxml messed up change done by commit
6a7c5257cac23cd9767aa4bc8fdab68925b11157.
This broke rendering in SynMark CSDof and TexFilterAniso tests.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101607
Thanks to Kevin, who spotted the actual typo!
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/genX_state_upload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c index d65b4688638..06b9cd50728 100644 --- a/src/mesa/drivers/dri/i965/genX_state_upload.c +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c @@ -4551,7 +4551,7 @@ genX(update_sampler_state)(struct brw_context *brw, if (sampler->MaxAnisotropy > 1.0f) { if (samp_st.MinModeFilter == MAPFILTER_LINEAR) samp_st.MinModeFilter = MAPFILTER_ANISOTROPIC; - if (samp_st.MinModeFilter == MAPFILTER_LINEAR) + if (samp_st.MagModeFilter == MAPFILTER_LINEAR) samp_st.MagModeFilter = MAPFILTER_ANISOTROPIC; if (sampler->MaxAnisotropy > 2.0f) { |