0
0
Fork 0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2024-12-26 03:45:49 +00:00
Ryujinx/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/INode.cs
2023-04-27 23:51:14 +02:00

15 lines
No EOL
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);
}
}