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