summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2021-11-16 23:07:17 +0100
committerGravatar Fernando Sahmkow2021-11-16 23:14:51 +0100
commit282e04bffb4962dcc1d8aee2cb0fd2a1a45c86e6 (patch)
tree6be46996d65e1799fa45e2f2bd6b81945b97af70 /src/common
parentTextureCache: Make a better Anisotropic setter. (diff)
downloadyuzu-282e04bffb4962dcc1d8aee2cb0fd2a1a45c86e6.tar.gz
yuzu-282e04bffb4962dcc1d8aee2cb0fd2a1a45c86e6.tar.xz
yuzu-282e04bffb4962dcc1d8aee2cb0fd2a1a45c86e6.zip
TextureCache: Add automatic anisotropic filtering and refactor code.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/settings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index c7610ef1c..42f8b4a7d 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -515,7 +515,7 @@ struct Values {
515#endif 515#endif
516 FullscreenMode::Borderless, FullscreenMode::Exclusive, "fullscreen_mode"}; 516 FullscreenMode::Borderless, FullscreenMode::Exclusive, "fullscreen_mode"};
517 RangedSetting<int> aspect_ratio{0, 0, 3, "aspect_ratio"}; 517 RangedSetting<int> aspect_ratio{0, 0, 3, "aspect_ratio"};
518 RangedSetting<int> max_anisotropy{0, 0, 4, "max_anisotropy"}; 518 RangedSetting<int> max_anisotropy{0, 0, 5, "max_anisotropy"};
519 Setting<bool> use_speed_limit{true, "use_speed_limit"}; 519 Setting<bool> use_speed_limit{true, "use_speed_limit"};
520 RangedSetting<u16> speed_limit{100, 0, 9999, "speed_limit"}; 520 RangedSetting<u16> speed_limit{100, 0, 9999, "speed_limit"};
521 Setting<bool> use_disk_shader_cache{true, "use_disk_shader_cache"}; 521 Setting<bool> use_disk_shader_cache{true, "use_disk_shader_cache"};