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