From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- .../Commands/Buffer/BufferDisposeCommand.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs') 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 - { - 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); - } - } -} -- cgit v1.2.3