aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Video/Vp9MvRef.cs
blob: 7962544d06cafde265b2edca5752ff58f398a015 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using Ryujinx.Common.Memory;

namespace Ryujinx.Graphics.Video
{
    // This must match the structure used by NVDEC, do not modify.
    public struct Vp9MvRef
    {
        public Array2<Vp9Mv> Mvs;
        public Array2<int> RefFrames;
    }
}