mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 09:12:25 -07:00
Start of MSL instructions
Remaining functions
This commit is contained in:
committed by
Isaac Marovitz
parent
27effab989
commit
4ec37d1798
@@ -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