0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs

12 lines
202 B
C#
Raw Normal View History

using Ryujinx.Common.Memory;
namespace Ryujinx.Graphics.Nvdec.Vp9
{
internal struct TileBuffer
{
public int Col;
public ArrayPtr<byte> Data;
public int Size;
}
}