using Ryujinx.Common.Memory; namespace Ryujinx.Graphics.Nvdec.Vp9.Types { internal struct MacroBlockDPlane { public ArrayPtr DqCoeff; public int SubsamplingX; public int SubsamplingY; public Buf2D Dst; public Array2 Pre; public ArrayPtr AboveContext; public ArrayPtr LeftContext; public Array8> SegDequant; // Number of 4x4s in current block public ushort N4W, N4H; // Log2 of N4W, N4H public byte N4Wl, N4Hl; } }