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