Presentation: add Nearest Neighbor filter.

This commit is contained in:
Fernando Sahmkow
2021-11-16 22:11:31 +01:00
parent 77b0812d69
commit b60966041c
6 changed files with 67 additions and 14 deletions
+5 -4
View File
@@ -61,10 +61,11 @@ enum class ResolutionSetup : u32 {
};
enum class ScalingFilter : u32 {
Bilinear = 0,
Bicubic = 1,
ScaleForce = 2,
Fsr = 3,
NearestNeighbor = 0,
Bilinear = 1,
Bicubic = 2,
ScaleForce = 3,
Fsr = 4,
};
struct ResolutionScalingInfo {