summaryrefslogtreecommitdiff
path: root/src/common/settings.h
diff options
context:
space:
mode:
authorGravatar Marshall Mohror2021-10-20 18:32:11 -0500
committerGravatar Fernando Sahmkow2021-11-16 22:11:32 +0100
commit510caeefb3e3bf4b365f08a97cdfeffaaf8a80ce (patch)
treec9d525c22242459cefb3eb2021af252d252104b1 /src/common/settings.h
parentQtGUI: Add buttton to toggle the filter. (diff)
downloadyuzu-510caeefb3e3bf4b365f08a97cdfeffaaf8a80ce.tar.gz
yuzu-510caeefb3e3bf4b365f08a97cdfeffaaf8a80ce.tar.xz
yuzu-510caeefb3e3bf4b365f08a97cdfeffaaf8a80ce.zip
Settings: Add anti-aliasing method setting
Diffstat (limited to 'src/common/settings.h')
-rw-r--r--src/common/settings.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index e926a3268..ca1c3c1aa 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -73,6 +73,11 @@ enum class ScalingFilter : u32 {
73 LastFilter = Fsr, 73 LastFilter = Fsr,
74}; 74};
75 75
76enum class AntiAliasing : u32 {
77 None = 0,
78 Fxaa = 1,
79};
80
76struct ResolutionScalingInfo { 81struct ResolutionScalingInfo {
77 u32 up_scale{1}; 82 u32 up_scale{1};
78 u32 down_shift{0}; 83 u32 down_shift{0};
@@ -498,6 +503,7 @@ struct Values {
498 ResolutionScalingInfo resolution_info{}; 503 ResolutionScalingInfo resolution_info{};
499 Setting<ResolutionSetup> resolution_setup{ResolutionSetup::Res1X, "resolution_setup"}; 504 Setting<ResolutionSetup> resolution_setup{ResolutionSetup::Res1X, "resolution_setup"};
500 Setting<ScalingFilter> scaling_filter{ScalingFilter::Bilinear, "scaling_filter"}; 505 Setting<ScalingFilter> scaling_filter{ScalingFilter::Bilinear, "scaling_filter"};
506 Setting<AntiAliasing> anti_aliasing{AntiAliasing::None, "anti_aliasing"};
501 // *nix platforms may have issues with the borderless windowed fullscreen mode. 507 // *nix platforms may have issues with the borderless windowed fullscreen mode.
502 // Default to exclusive fullscreen on these platforms for now. 508 // Default to exclusive fullscreen on these platforms for now.
503 RangedSetting<FullscreenMode> fullscreen_mode{ 509 RangedSetting<FullscreenMode> fullscreen_mode{