mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:49:15 +00:00
25 lines
432 B
C#
25 lines
432 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Services.Vi
|
|||
|
{
|
|||
|
enum SrcScalingMode
|
|||
|
{
|
|||
|
Freeze = 0,
|
|||
|
ScaleToWindow = 1,
|
|||
|
ScaleAndCrop = 2,
|
|||
|
None = 3,
|
|||
|
PreserveAspectRatio = 4
|
|||
|
}
|
|||
|
|
|||
|
enum DstScalingMode
|
|||
|
{
|
|||
|
None = 0,
|
|||
|
Freeze = 1,
|
|||
|
ScaleToWindow = 2,
|
|||
|
ScaleAndCrop = 3,
|
|||
|
PreserveAspectRatio = 4
|
|||
|
}
|
|||
|
}
|