Files
Ryujinx-greemdev/src/Ryujinx.Graphics.Shader/CodeGen/Msl/Instructions/InstInfo.cs
2025-02-22 21:33:38 -06:00

19 lines
403 B
C#

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