From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- .../StructuredIr/StructuredProgramInfo.cs | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs (limited to 'Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs') diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs b/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs deleted file mode 100644 index c5104146..00000000 --- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Collections.Generic; - -namespace Ryujinx.Graphics.Shader.StructuredIr -{ - readonly struct TransformFeedbackOutput - { - public readonly bool Valid; - public readonly int Buffer; - public readonly int Offset; - public readonly int Stride; - - public TransformFeedbackOutput(int buffer, int offset, int stride) - { - Valid = true; - Buffer = buffer; - Offset = offset; - Stride = stride; - } - } - - class StructuredProgramInfo - { - public List Functions { get; } - - public HashSet IoDefinitions { get; } - - public HelperFunctionsMask HelperFunctionsMask { get; set; } - - public StructuredProgramInfo() - { - Functions = new List(); - - IoDefinitions = new HashSet(); - } - } -} \ No newline at end of file -- cgit v1.2.3