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/SetVertexBuffersCommand.cs | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs') diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs deleted file mode 100644 index 585da2a4..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Ryujinx.Graphics.GAL.Multithreading.Model; -using System; - -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct SetVertexBuffersCommand : IGALCommand, IGALCommand - { - public CommandType CommandType => CommandType.SetVertexBuffers; - private SpanRef _vertexBuffers; - - public void Set(SpanRef vertexBuffers) - { - _vertexBuffers = vertexBuffers; - } - - public static void Run(ref SetVertexBuffersCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - Span vertexBuffers = command._vertexBuffers.Get(threaded); - renderer.Pipeline.SetVertexBuffers(threaded.Buffers.MapBufferRanges(vertexBuffers)); - command._vertexBuffers.Dispose(threaded); - } - } -} -- cgit v1.2.3