diff options
| author | 2023-06-13 18:07:08 +0200 | |
|---|---|---|
| committer | 2023-06-13 21:32:32 +0200 | |
| commit | b9bba3ac8941e4561ef150517cf44943a42b99e7 (patch) | |
| tree | 45e3203fedb245c5955545af66f715f978406a9b /src/video_core/textures | |
| parent | video_core: Option to apply anisotropic filtering for all mipmap modes (diff) | |
| download | yuzu-b9bba3ac8941e4561ef150517cf44943a42b99e7.tar.gz yuzu-b9bba3ac8941e4561ef150517cf44943a42b99e7.tar.xz yuzu-b9bba3ac8941e4561ef150517cf44943a42b99e7.zip | |
video_core: Disable anisotropic filtering for samplers with depth compare
Diffstat (limited to 'src/video_core/textures')
| -rw-r--r-- | src/video_core/textures/texture.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp index 12372a004..083bfd8d3 100644 --- a/src/video_core/textures/texture.cpp +++ b/src/video_core/textures/texture.cpp | |||
| @@ -62,8 +62,9 @@ std::array<float, 4> TSCEntry::BorderColor() const noexcept { | |||
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | float TSCEntry::MaxAnisotropy() const noexcept { | 64 | float TSCEntry::MaxAnisotropy() const noexcept { |
| 65 | if (max_anisotropy == 0 && (mipmap_filter != TextureMipmapFilter::Linear && | 65 | if (max_anisotropy == 0 && (depth_compare_enabled.Value() || |
| 66 | !Settings::values.use_aggressive_anisotropic_filtering)) { | 66 | (mipmap_filter != TextureMipmapFilter::Linear && |
| 67 | !Settings::values.use_aggressive_anisotropic_filtering))) { | ||
| 67 | return 1.0f; | 68 | return 1.0f; |
| 68 | } | 69 | } |
| 69 | const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); | 70 | const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); |