0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-18 20:21:41 +00:00
ryujinx-fork/Ryujinx.Graphics.Video/ISurface.cs

21 lines
409 B
C#
Raw Normal View History

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; }
}
}