aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
blob: dcd1e0bd4f183dc7313d5d2e497a4bad5839144e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.Graphics.Shader.Translation
{
    enum AggregateType
    {
        Invalid,
        Void,
        Bool,
        FP32,
        FP64,
        S32,
        U32,

        ElementTypeMask = 0xff,

        Vector = 1 << 8,
        Array  = 1 << 9
    }
}