aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs
blob: b6adb95fff3f6295c6299fc63136ec03df35c38b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using Ryujinx.Common.Memory;

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