mirror of
https://github.com/GreemDev/Ryujinx
synced 2025-01-21 10:12:22 +01:00
11 lines
248 B
C#
11 lines
248 B
C#
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;
|
|
}
|
|
}
|