diff options
Diffstat (limited to 'Ryujinx.Graphics.Video')
-rw-r--r-- | Ryujinx.Graphics.Video/FrameField.cs | 8 | ||||
-rw-r--r-- | Ryujinx.Graphics.Video/ISurface.cs | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Video/FrameField.cs b/Ryujinx.Graphics.Video/FrameField.cs new file mode 100644 index 00000000..2bff0e75 --- /dev/null +++ b/Ryujinx.Graphics.Video/FrameField.cs @@ -0,0 +1,8 @@ +namespace Ryujinx.Graphics.Video +{ + public enum FrameField + { + Progressive, + Interlaced + } +}
\ No newline at end of file diff --git a/Ryujinx.Graphics.Video/ISurface.cs b/Ryujinx.Graphics.Video/ISurface.cs index fb66f31a..7c1661f1 100644 --- a/Ryujinx.Graphics.Video/ISurface.cs +++ b/Ryujinx.Graphics.Video/ISurface.cs @@ -8,6 +8,8 @@ namespace Ryujinx.Graphics.Video Plane UPlane { get; } Plane VPlane { get; } + FrameField Field { get; } + int Width { get; } int Height { get; } int Stride { get; } |