aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
deleted file mode 100644
index 5be42fff..00000000
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Buffer
-{
- struct BufferDisposeCommand : IGALCommand, IGALCommand<BufferDisposeCommand>
- {
- public CommandType CommandType => CommandType.BufferDispose;
- private BufferHandle _buffer;
-
- public void Set(BufferHandle buffer)
- {
- _buffer = buffer;
- }
-
- public static void Run(ref BufferDisposeCommand command, ThreadedRenderer threaded, IRenderer renderer)
- {
- renderer.DeleteBuffer(threaded.Buffers.MapBuffer(command._buffer));
- threaded.Buffers.UnassignBuffer(command._buffer);
- }
- }
-}