aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs')
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
new file mode 100644
index 00000000..585da2a4
--- /dev/null
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
@@ -0,0 +1,23 @@
+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);
+ }
+ }
+}