TxMode.cs 386 B

123456789101112
  1. namespace Ryujinx.Graphics.Nvdec.Vp9.Types
  2. {
  3. public enum TxMode
  4. {
  5. Only4x4, // Only 4x4 transform used
  6. Allow8x8, // Allow block transform size up to 8x8
  7. Allow16x16, // Allow block transform size up to 16x16
  8. Allow32x32, // Allow block transform size up to 32x32
  9. TxModeSelect, // Transform specified for each block
  10. TxModes
  11. }
  12. }