diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs')
-rw-r--r-- | Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs deleted file mode 100644 index 68e48da5..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct SetBlendStateCommand : IGALCommand, IGALCommand<SetBlendStateCommand> - { - public CommandType CommandType => CommandType.SetBlendState; - private int _index; - private BlendDescriptor _blend; - - public void Set(int index, BlendDescriptor blend) - { - _index = index; - _blend = blend; - } - - public static void Run(ref SetBlendStateCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - renderer.Pipeline.SetBlendState(command._index, command._blend); - } - } -} |