1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-27 06:26:32 -05:00

Presentation: add Nearest Neighbor filter.

This commit is contained in:
Fernando Sahmkow
2021-10-17 17:22:16 +02:00
parent 77b0812d69
commit b60966041c
6 changed files with 67 additions and 14 deletions

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 {