summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2021-10-17 17:22:16 +0200
committerGravatar Fernando Sahmkow2021-11-16 22:11:31 +0100
commitb60966041c5b1dccd9c5c5ca00fb02353c2151bb (patch)
treea4c8e34aadb27e64989a69b3b3b32584e193fab1 /src/common
parentexternals: Add only included ffx-fsr headers (diff)
downloadyuzu-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.h9
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
63enum class ScalingFilter : u32 { 63enum 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
70struct ResolutionScalingInfo { 71struct ResolutionScalingInfo {