summaryrefslogtreecommitdiff
path: root/src/video_core/textures/texture.cpp
diff options
context:
space:
mode:
authorGravatar Fernando S2023-06-18 00:02:05 +0200
committerGravatar GitHub2023-06-18 00:02:05 +0200
commit27a36cd51bbc832b0b73cbbaef6bd8453368a38d (patch)
tree00a30700c65665e2eaf2b02f03d73585c4d4f790 /src/video_core/textures/texture.cpp
parentMerge pull request #10783 from liamwhite/memory (diff)
parentvideo_core: Only apply AF to 2D (array) image types (diff)
downloadyuzu-27a36cd51bbc832b0b73cbbaef6bd8453368a38d.tar.gz
yuzu-27a36cd51bbc832b0b73cbbaef6bd8453368a38d.tar.xz
yuzu-27a36cd51bbc832b0b73cbbaef6bd8453368a38d.zip
Merge pull request #10744 from Wollnashorn/af-for-all
video_core: Improved anisotropic filtering heuristics
Diffstat (limited to 'src/video_core/textures/texture.cpp')
-rw-r--r--src/video_core/textures/texture.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp
index 4a80a59f9..d8b88d9bc 100644
--- a/src/video_core/textures/texture.cpp
+++ b/src/video_core/textures/texture.cpp
@@ -62,7 +62,12 @@ std::array<float, 4> TSCEntry::BorderColor() const noexcept {
62} 62}
63 63
64float TSCEntry::MaxAnisotropy() const noexcept { 64float TSCEntry::MaxAnisotropy() const noexcept {
65 if (max_anisotropy == 0 && mipmap_filter != TextureMipmapFilter::Linear) { 65 const bool is_suitable_mipmap_filter = mipmap_filter != TextureMipmapFilter::None;
66 const bool has_regular_lods = min_lod_clamp == 0 && max_lod_clamp >= 256;
67 const bool is_bilinear_filter = min_filter == TextureFilter::Linear &&
68 reduction_filter == SamplerReduction::WeightedAverage;
69 if (max_anisotropy == 0 && (!is_suitable_mipmap_filter || !has_regular_lods ||
70 !is_bilinear_filter || depth_compare_enabled)) {
66 return 1.0f; 71 return 1.0f;
67 } 72 }
68 const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); 73 const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();