aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs
blob: a784e2bb31df8eef43cbe4a16555486965366b41 (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;
        }
    }
}