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