1
0
forked from MeloNX/MeloNX
2023-04-27 23:51:14 +02:00

15 lines
326 B
C#

namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
{
interface INode
{
Operand Dest { get; set; }
int DestsCount { get; }
int SourcesCount { get; }
Operand GetDest(int index);
Operand GetSource(int index);
void SetSource(int index, Operand operand);
}
}