diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs')
-rw-r--r-- | Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs deleted file mode 100644 index 29568837..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs +++ /dev/null @@ -1,22 +0,0 @@ -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct DispatchComputeCommand : IGALCommand, IGALCommand<DispatchComputeCommand> - { - public CommandType CommandType => CommandType.DispatchCompute; - private int _groupsX; - private int _groupsY; - private int _groupsZ; - - public void Set(int groupsX, int groupsY, int groupsZ) - { - _groupsX = groupsX; - _groupsY = groupsY; - _groupsZ = groupsZ; - } - - public static void Run(ref DispatchComputeCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - renderer.Pipeline.DispatchCompute(command._groupsX, command._groupsY, command._groupsZ); - } - } -} |