aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs
blob: 7b2a6b464f2c2fc784a9e25393c2ff75a53650d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl.Instructions
{
    readonly struct InstInfo
    {
        public InstType Type { get; }

        public string OpName { get; }

        public int Precedence { get; }

        public InstInfo(InstType type, string opName, int precedence)
        {
            Type       = type;
            OpName     = opName;
            Precedence = precedence;
        }
    }
}