TxSize.cs
 1  namespace Ryujinx.Graphics.Nvdec.Vp9.Types
 2  {
 3      public enum TxSize
 4      {
 5          Tx4x4 = 0, // 4x4 transform
 6          Tx8x8 = 1, // 8x8 transform
 7          Tx16x16 = 2, // 16x16 transform
 8          Tx32x32 = 3, // 32x32 transform
 9          TxSizes = 4,
10      }
11  }