1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-19 21:44:14 +01:00
Ryujinx/Ryujinx.Graphics.Video/ISurface.cs
gdkchan 1402d8391d
Support NVDEC H264 interlaced video decoding and VIC deinterlacing (#3225)
* Support NVDEC H264 interlaced video decoding and VIC deinterlacing

* Remove unused code
2022-03-23 17:09:32 -03:00

21 lines
409 B
C#

using System;
namespace Ryujinx.Graphics.Video
{
public interface ISurface : IDisposable
{
Plane YPlane { get; }
Plane UPlane { get; }
Plane VPlane { get; }
FrameField Field { get; }
int Width { get; }
int Height { get; }
int Stride { get; }
int UvWidth { get; }
int UvHeight { get; }
int UvStride { get; }
}
}