Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
20
src/Ryujinx.Graphics.Video/ISurface.cs
Normal file
20
src/Ryujinx.Graphics.Video/ISurface.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue