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