VideoCore: Add gaussian filtering.

This commit is contained in:
FernandoS27 2021-10-21 01:27:54 +02:00 committed by Fernando Sahmkow
parent bf01b7993d
commit 9e065b9c7d
8 changed files with 140 additions and 2 deletions

View file

@ -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 {