1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-27 10:06:46 -06:00

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