1
0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-30 11:51:33 -08:00
gdkchan 4b7c7dab9e
Support multiple destination operands on shader IR and shuffle predicates ()
* Support multiple destination operands on shader IR and shuffle predicates

* Cache version change
2021-01-28 10:59:47 +11: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);
}
}