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 --- .../Multithreading/Commands/ClearBufferCommand.cs | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs') diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs deleted file mode 100644 index 1d70460a..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs +++ /dev/null @@ -1,24 +0,0 @@ -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct ClearBufferCommand : IGALCommand, IGALCommand - { - public CommandType CommandType => CommandType.ClearBuffer; - private BufferHandle _destination; - private int _offset; - private int _size; - private uint _value; - - public void Set(BufferHandle destination, int offset, int size, uint value) - { - _destination = destination; - _offset = offset; - _size = size; - _value = value; - } - - public static void Run(ref ClearBufferCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - renderer.Pipeline.ClearBuffer(threaded.Buffers.MapBuffer(command._destination), command._offset, command._size, command._value); - } - } -} -- cgit v1.2.3