aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandType.cs
blob: 3427b103463a5ec75154bfadda17e33aacd8e32d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
{
    enum OperandType
    {
        Argument,
        Attribute,
        Constant,
        ConstantBuffer,
        Label,
        LocalVariable,
        Register,
        Undefined
    }
}