aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs
deleted file mode 100644
index c18bd811..00000000
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Ryujinx.Graphics.GAL.Multithreading.Model;
-using System;
-
-namespace Ryujinx.Graphics.GAL.Multithreading.Commands
-{
- struct SetViewportsCommand : IGALCommand, IGALCommand<SetViewportsCommand>
- {
- public CommandType CommandType => CommandType.SetViewports;
- private SpanRef<Viewport> _viewports;
- private bool _disableTransform;
-
- public void Set(SpanRef<Viewport> viewports, bool disableTransform)
- {
- _viewports = viewports;
- _disableTransform = disableTransform;
- }
-
- public static void Run(ref SetViewportsCommand command, ThreadedRenderer threaded, IRenderer renderer)
- {
- ReadOnlySpan<Viewport> viewports = command._viewports.Get(threaded);
- renderer.Pipeline.SetViewports(viewports, command._disableTransform);
- command._viewports.Dispose(threaded);
- }
- }
-}