diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs')
-rw-r--r-- | Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs deleted file mode 100644 index 3e169164..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs +++ /dev/null @@ -1,18 +0,0 @@ -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct SetDepthModeCommand : IGALCommand, IGALCommand<SetDepthModeCommand> - { - public CommandType CommandType => CommandType.SetDepthMode; - private DepthMode _mode; - - public void Set(DepthMode mode) - { - _mode = mode; - } - - public static void Run(ref SetDepthModeCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - renderer.Pipeline.SetDepthMode(command._mode); - } - } -} |