diff options
| author | 2023-06-14 13:27:27 +0200 | |
|---|---|---|
| committer | 2023-06-14 13:27:27 +0200 | |
| commit | 0de6b9e3f56fb54e74f5ec1fdbecac31986a8054 (patch) | |
| tree | d9b2be86dc0920b94cf18af255f9a314c621152a | |
| parent | video_core: Fix default anisotropic heuristic (diff) | |
| download | yuzu-0de6b9e3f56fb54e74f5ec1fdbecac31986a8054.tar.gz yuzu-0de6b9e3f56fb54e74f5ec1fdbecac31986a8054.tar.xz yuzu-0de6b9e3f56fb54e74f5ec1fdbecac31986a8054.zip | |
video_core: Apply AF only to samplers with normal LOD range [0, 1+x]
| -rw-r--r-- | src/video_core/textures/texture.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp index 1daa2d488..560b3af8a 100644 --- a/src/video_core/textures/texture.cpp +++ b/src/video_core/textures/texture.cpp | |||
| @@ -62,10 +62,12 @@ 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 | const bool unsupported_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering | 65 | const bool is_unsupported_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering |
| 66 | ? mipmap_filter == TextureMipmapFilter::None | 66 | ? mipmap_filter == TextureMipmapFilter::None |
| 67 | : mipmap_filter != TextureMipmapFilter::Linear; | 67 | : mipmap_filter != TextureMipmapFilter::Linear; |
| 68 | if (max_anisotropy == 0 && (depth_compare_enabled.Value() || unsupported_mipmap_filter)) { | 68 | const bool has_regular_lods = min_lod_clamp == 0 && max_lod_clamp >= 256; |
| 69 | if (max_anisotropy == 0 && | ||
| 70 | (depth_compare_enabled.Value() || !has_regular_lods || is_unsupported_mipmap_filter)) { | ||
| 69 | return 1.0f; | 71 | return 1.0f; |
| 70 | } | 72 | } |
| 71 | const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); | 73 | const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); |