blob: a784e2bb31df8eef43cbe4a16555486965366b41 (
plain) (
tree)
|
|
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;
}
}
}
|