Start of MSL instructions
Remaining functions
This commit is contained in:
parent
27effab989
commit
4ec37d1798
3 changed files with 188 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue