aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxType.cs
blob: e7b37c92558e103ca65be0553df28a159fb9e4d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Graphics.Nvdec.Vp9.Types
{
    internal enum TxType
    {
        DctDct = 0, // DCT  in both horizontal and vertical
        AdstDct = 1, // ADST in vertical, DCT in horizontal
        DctAdst = 2, // DCT  in vertical, ADST in horizontal
        AdstAdst = 3, // ADST in both directions
        TxTypes = 4,
    }
}