INode.cs 258 B

12345678910111213
  1. namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
  2. {
  3. interface INode
  4. {
  5. Operand Dest { get; set; }
  6. int SourcesCount { get; }
  7. Operand GetSource(int index);
  8. void SetSource(int index, Operand operand);
  9. }
  10. }