mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-25 05:30:18 +00:00
16 lines
310 B
C#
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;
|
||
|
}
|
||
|
}
|
||
|
}
|