diff options
| author | 2022-12-11 01:38:28 -0300 | |
|---|---|---|
| committer | 2022-12-11 01:38:28 -0300 | |
| commit | 623429a27ec943f3c1ba758aaf741589b0493ddb (patch) | |
| tree | 0a0866296c4cf932d046a9332196d3cbcf3c83a8 /src/common | |
| parent | Merge pull request #9416 from liamwhite/penicillin (diff) | |
| parent | video_core: Integrate SMAA (diff) | |
| download | yuzu-623429a27ec943f3c1ba758aaf741589b0493ddb.tar.gz yuzu-623429a27ec943f3c1ba758aaf741589b0493ddb.tar.xz yuzu-623429a27ec943f3c1ba758aaf741589b0493ddb.zip | |
Merge pull request #9409 from liamwhite/smaa2
video_core: Integrate SMAA
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 { | |||
| 76 | enum class AntiAliasing : u32 { | 76 | enum class AntiAliasing : u32 { |
| 77 | None = 0, | 77 | None = 0, |
| 78 | Fxaa = 1, | 78 | Fxaa = 1, |
| 79 | LastAA = Fxaa, | 79 | Smaa = 2, |
| 80 | LastAA = Smaa, | ||
| 80 | }; | 81 | }; |
| 81 | 82 | ||
| 82 | struct ResolutionScalingInfo { | 83 | struct ResolutionScalingInfo { |