aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs
new file mode 100644
index 00000000..57509f1c
--- /dev/null
+++ b/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs
@@ -0,0 +1,22 @@
+namespace Ryujinx.Graphics.GAL.Multithreading.Commands
+{
+ struct ClearRenderTargetColorCommand : IGALCommand
+ {
+ public CommandType CommandType => CommandType.ClearRenderTargetColor;
+ private int _index;
+ private uint _componentMask;
+ private ColorF _color;
+
+ public void Set(int index, uint componentMask, ColorF color)
+ {
+ _index = index;
+ _componentMask = componentMask;
+ _color = color;
+ }
+
+ public static void Run(ref ClearRenderTargetColorCommand command, ThreadedRenderer threaded, IRenderer renderer)
+ {
+ renderer.Pipeline.ClearRenderTargetColor(command._index, command._componentMask, command._color);
+ }
+ }
+}