mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-24 20:40:51 +00:00
20 lines
409 B
C#
20 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; }
|
|
}
|
|
}
|