diff options
Diffstat (limited to 'Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs b/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs deleted file mode 100644 index 61c4fed7..00000000 --- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs +++ /dev/null @@ -1,42 +0,0 @@ -using Ryujinx.Graphics.Shader.Translation; -using System.Collections.Generic; - -namespace Ryujinx.Graphics.Shader.StructuredIr -{ - class StructuredFunction - { - public AstBlock MainBlock { get; } - - public string Name { get; } - - public AggregateType ReturnType { get; } - - public AggregateType[] InArguments { get; } - public AggregateType[] OutArguments { get; } - - public HashSet<AstOperand> Locals { get; } - - public StructuredFunction( - AstBlock mainBlock, - string name, - AggregateType returnType, - AggregateType[] inArguments, - AggregateType[] outArguments) - { - MainBlock = mainBlock; - Name = name; - ReturnType = returnType; - InArguments = inArguments; - OutArguments = outArguments; - - Locals = new HashSet<AstOperand>(); - } - - public AggregateType GetArgumentType(int index) - { - return index >= InArguments.Length - ? OutArguments[index - InArguments.Length] - : InArguments[index]; - } - } -}
\ No newline at end of file |
