Start of MSL instructions
Remaining functions
This commit is contained in:
committed by
Evan Husted
parent
a7908c187d
commit
a8b4e643d0
@@ -0,0 +1,15 @@
|
||||
namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
|
||||
{
|
||||
readonly struct InstInfo
|
||||
{
|
||||
public InstType Type { get; }
|
||||
|
||||
public string OpName { get; }
|
||||
|
||||
public InstInfo(InstType type, string opName)
|
||||
{
|
||||
Type = type;
|
||||
OpName = opName;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user