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