aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/IntegerType.cs
blob: 46734dbe4a58d0aec9a249f3c41954fa5fca6e1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Shader.Decoders
{
    enum IntegerType
    {
        U8  = 0,
        U16 = 1,
        U32 = 2,
        U64 = 3,
        S8  = 4,
        S16 = 5,
        S32 = 6,
        S64 = 7
    }
}