early-access version 3672

This commit is contained in:
pineappleEA
2023-06-13 23:39:30 +02:00
parent a1cf03f41a
commit 1a98dc298e
12 changed files with 57 additions and 2 deletions

View File

@@ -62,7 +62,9 @@ std::array<float, 4> TSCEntry::BorderColor() const noexcept {
}
float TSCEntry::MaxAnisotropy() const noexcept {
if (max_anisotropy == 0 && mipmap_filter != TextureMipmapFilter::Linear) {
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();