INode.cs
1 namespace Ryujinx.Graphics.Shader.IntermediateRepresentation 2 { 3 interface INode 4 { 5 Operand Dest { get; set; } 6 7 int DestsCount { get; } 8 int SourcesCount { get; } 9 10 Operand GetDest(int index); 11 Operand GetSource(int index); 12 13 void SetSource(int index, Operand operand); 14 } 15 }