aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs23
1 files changed, 0 insertions, 23 deletions
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<SetVertexBuffersCommand>
- {
- public CommandType CommandType => CommandType.SetVertexBuffers;
- private SpanRef<VertexBufferDescriptor> _vertexBuffers;
-
- public void Set(SpanRef<VertexBufferDescriptor> vertexBuffers)
- {
- _vertexBuffers = vertexBuffers;
- }
-
- public static void Run(ref SetVertexBuffersCommand command, ThreadedRenderer threaded, IRenderer renderer)
- {
- Span<VertexBufferDescriptor> vertexBuffers = command._vertexBuffers.Get(threaded);
- renderer.Pipeline.SetVertexBuffers(threaded.Buffers.MapBufferRanges(vertexBuffers));
- command._vertexBuffers.Dispose(threaded);
- }
- }
-}