blob: f6c4f0b17e7fb4393bb6547a2548a313912146bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using Ryujinx.Common.Memory;
namespace Ryujinx.Graphics.Nvdec.Types.Vp9
{
struct Segmentation
{
#pragma warning disable CS0649
public byte Enabled;
public byte UpdateMap;
public byte TemporalUpdate;
public byte AbsDelta;
public Array8<uint> FeatureMask;
public Array8<Array4<short>> FeatureData;
#pragma warning restore CS0649
}
}
|