18 lines
404 B
C#
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;
|
||
|
}
|
||
|
}
|
||
|
}
|