Fix up the naming
This commit is contained in:
parent
133ca72a01
commit
52feb6da50
1 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,15 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Vi
|
||||
{
|
||||
enum SrcScalingMode
|
||||
{
|
||||
None = 0,
|
||||
Freeze = 1,
|
||||
ScaleToWindow = 2,
|
||||
ScaleAndCrop = 3,
|
||||
PreserveAspectRatio = 4
|
||||
}
|
||||
|
||||
enum DstScalingMode
|
||||
{
|
||||
Freeze = 0,
|
||||
ScaleToWindow = 1,
|
||||
|
@ -8,13 +17,4 @@
|
|||
None = 3,
|
||||
PreserveAspectRatio = 4
|
||||
}
|
||||
|
||||
enum DstScalingMode
|
||||
{
|
||||
ScaleToWindow = 0,
|
||||
ScaleAndCrop = 1,
|
||||
None = 2,
|
||||
Freeze = 3,
|
||||
PreserveAspectRatio = 4
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue