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, 19 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
new file mode 100644
index 00000000..68167be0
--- /dev/null
+++ b/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
@@ -0,0 +1,19 @@
+namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Buffer
+{
+ struct BufferDisposeCommand : IGALCommand
+ {
+ 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);
+ }
+ }
+}