diff options
| author | 2023-06-14 11:21:22 +0200 | |
|---|---|---|
| committer | 2023-06-14 11:21:22 +0200 | |
| commit | a9e4dddad582d61871076b4310f2c99009afe0db (patch) | |
| tree | 3758955435af379cb089abdc45a484b10f3ce054 /src/video_core/textures | |
| parent | video_core: Never apply AF to None mipmap mode (diff) | |
| download | yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar.gz yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar.xz yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.zip | |
video_core: Fix default anisotropic heuristic
Diffstat (limited to 'src/video_core/textures')
| -rw-r--r-- | src/video_core/textures/texture.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp index b46dce096..1daa2d488 100644 --- a/src/video_core/textures/texture.cpp +++ b/src/video_core/textures/texture.cpp | |||
| @@ -62,10 +62,10 @@ 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 suitable_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering | 65 | const bool 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() || !suitable_mipmap_filter)) { | 68 | if (max_anisotropy == 0 && (depth_compare_enabled.Value() || unsupported_mipmap_filter)) { |
| 69 | return 1.0f; | 69 | return 1.0f; |
| 70 | } | 70 | } |
| 71 | const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); | 71 | const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); |