mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 03:12:26 -07:00
Mostly copied from GLSL since in terms of syntax within blocks they’re pretty similar. Likely the result will need tweaking… Isn’t that conveniant? “Do the simd_shuffle” atomics Remaining instructions Remove removed special instructions Getting somewhere…
19 lines
403 B
C#
19 lines
403 B
C#
namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
|
|
{
|
|
readonly struct InstInfo
|
|
{
|
|
public InstType Type { get; }
|
|
|
|
public string OpName { get; }
|
|
|
|
public int Precedence { get; }
|
|
|
|
public InstInfo(InstType type, string opName, int precedence)
|
|
{
|
|
Type = type;
|
|
OpName = opName;
|
|
Precedence = precedence;
|
|
}
|
|
}
|
|
}
|