diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs')
-rw-r--r-- | Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs deleted file mode 100644 index e4d7b814..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs +++ /dev/null @@ -1,18 +0,0 @@ -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct SetFrontFaceCommand : IGALCommand, IGALCommand<SetFrontFaceCommand> - { - 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); - } - } -} |