Ryujinx/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs
2020-01-09 02:13:00 +01:00

18 lines
404 B
C#

namespace Ryujinx.Graphics.Shader.CodeGen.Glsl.Instructions
{
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;
}
}
}