From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- .../Commands/SetRenderTargetColorMasksCommand.cs | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs') diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs deleted file mode 100644 index c247ff3a..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Ryujinx.Graphics.GAL.Multithreading.Model; -using System; - -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct SetRenderTargetColorMasksCommand : IGALCommand, IGALCommand - { - public CommandType CommandType => CommandType.SetRenderTargetColorMasks; - private SpanRef _componentMask; - - public void Set(SpanRef componentMask) - { - _componentMask = componentMask; - } - - public static void Run(ref SetRenderTargetColorMasksCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - ReadOnlySpan componentMask = command._componentMask.Get(threaded); - renderer.Pipeline.SetRenderTargetColorMasks(componentMask); - command._componentMask.Dispose(threaded); - } - } -} -- cgit v1.2.3