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