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