diff options
| author | 2021-10-17 17:22:16 +0200 | |
|---|---|---|
| committer | 2021-11-16 22:11:31 +0100 | |
| commit | b60966041c5b1dccd9c5c5ca00fb02353c2151bb (patch) | |
| tree | a4c8e34aadb27e64989a69b3b3b32584e193fab1 /src/common | |
| parent | externals: Add only included ffx-fsr headers (diff) | |
| download | yuzu-b60966041c5b1dccd9c5c5ca00fb02353c2151bb.tar.gz yuzu-b60966041c5b1dccd9c5c5ca00fb02353c2151bb.tar.xz yuzu-b60966041c5b1dccd9c5c5ca00fb02353c2151bb.zip | |
Presentation: add Nearest Neighbor filter.
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/settings.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 9da447ce0..84dab5217 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -61,10 +61,11 @@ enum class ResolutionSetup : u32 { | |||
| 61 | }; | 61 | }; |
| 62 | 62 | ||
| 63 | enum class ScalingFilter : u32 { | 63 | enum class ScalingFilter : u32 { |
| 64 | Bilinear = 0, | 64 | NearestNeighbor = 0, |
| 65 | Bicubic = 1, | 65 | Bilinear = 1, |
| 66 | ScaleForce = 2, | 66 | Bicubic = 2, |
| 67 | Fsr = 3, | 67 | ScaleForce = 3, |
| 68 | Fsr = 4, | ||
| 68 | }; | 69 | }; |
| 69 | 70 | ||
| 70 | struct ResolutionScalingInfo { | 71 | struct ResolutionScalingInfo { |