mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 19:55:46 +00:00
video_core: Option to apply anisotropic filtering for all mipmap modes
This commit is contained in:
parent
492a4c705a
commit
6f1fb4c28a
9 changed files with 37 additions and 1 deletions
|
@ -62,7 +62,8 @@ 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 && (mipmap_filter != TextureMipmapFilter::Linear &&
|
||||
!Settings::values.use_aggressive_anisotropic_filtering)) {
|
||||
return 1.0f;
|
||||
}
|
||||
const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue