Files
Ryujinx-greemdev/src/Ryujinx.Graphics.Shader/CodeGen/Msl/Instructions/InstInfo.cs
Isaac Marovitz a8b4e643d0 Start of MSL instructions
Remaining functions
2024-12-23 20:55:40 -06:00

16 lines
310 B
C#

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;
}
}
}