aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs
deleted file mode 100644
index 33df325f..00000000
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace Ryujinx.Graphics.GAL.Multithreading.Commands
-{
- struct EndTransformFeedbackCommand : IGALCommand, IGALCommand<EndTransformFeedbackCommand>
- {
- public CommandType CommandType => CommandType.EndTransformFeedback;
-
- public static void Run(ref EndTransformFeedbackCommand command, ThreadedRenderer threaded, IRenderer renderer)
- {
- renderer.Pipeline.EndTransformFeedback();
- }
- }
-}