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