INode.cs 326 B

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