summaryrefslogtreecommitdiff
path: root/src/common/settings.h
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-10-21 01:27:54 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:32 +0100
commit9e065b9c7d3b25ddfe20afa4a945cca6e9767fa9 (patch)
treef9d3d14332d7a0f83c5a60541e2d3fb1e2522669 /src/common/settings.h
parentbf01b7993dca835a516abdc2142be96bc0f216ec (diff)
VideoCore: Add gaussian filtering.
Diffstat (limited to 'src/common/settings.h')
-rw-r--r--src/common/settings.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index f6acf5bdf..830030efd 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -67,8 +67,9 @@ enum class ScalingFilter : u32 {
NearestNeighbor = 0,
Bilinear = 1,
Bicubic = 2,
- ScaleForce = 3,
- Fsr = 4,
+ Gaussian = 3,
+ ScaleForce = 4,
+ Fsr = 5,
};
struct ResolutionScalingInfo {