summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWollnashorn <Wollnashorn@users.noreply.github.com>2023-06-13 18:07:08 +0200
committerWollnashorn <Wollnashorn@users.noreply.github.com>2023-06-13 21:32:32 +0200
commitb9bba3ac8941e4561ef150517cf44943a42b99e7 (patch)
tree45e3203fedb245c5955545af66f715f978406a9b
parent0eacf547c0733f39e11515e7aedf300d0cd06e99 (diff)
video_core: Disable anisotropic filtering for samplers with depth compare
-rw-r--r--src/video_core/textures/texture.cpp5
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 {
}
float TSCEntry::MaxAnisotropy() const noexcept {
- if (max_anisotropy == 0 && (mipmap_filter != TextureMipmapFilter::Linear &&
- !Settings::values.use_aggressive_anisotropic_filtering)) {
+ if (max_anisotropy == 0 && (depth_compare_enabled.Value() ||
+ (mipmap_filter != TextureMipmapFilter::Linear &&
+ !Settings::values.use_aggressive_anisotropic_filtering))) {
return 1.0f;
}
const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();