blob: 1ae436e962bc08c8e1d214853d11cfa9e7f06146 (
plain)
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,
}
}
|