diff options
| author | Liam <byteslice@airmail.cc> | 2022-12-08 16:52:29 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2022-12-08 17:17:45 -0500 |
| commit | 5b837157bde2115cf4781c5353f598eb6f0f7109 (patch) | |
| tree | e69496d0ae0191642de95cd2c27585276cc3669e /src/common | |
| parent | 41461514d6f3ba59dc027dbc4a88c0ffb570ea49 (diff) | |
video_core: Integrate SMAA
Co-authored-by: goldenx86 <goldenx86@users.noreply.github.com>
Co-authored-by: BreadFish64 <breadfish64@users.noreply.github.com>
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 29b730cff..7ce9ea23c 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -76,7 +76,8 @@ enum class ScalingFilter : u32 { enum class AntiAliasing : u32 { None = 0, Fxaa = 1, - LastAA = Fxaa, + Smaa = 2, + LastAA = Smaa, }; struct ResolutionScalingInfo { |
