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.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
new file mode 100644
index 00000000..bdaba2c9
--- /dev/null
+++ b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
@@ -0,0 +1,24 @@
+using Ryujinx.Graphics.GAL.Multithreading.Model;
+using System;
+using System.Buffers;
+
+namespace Ryujinx.Graphics.GAL.Multithreading.Commands
+{
+ struct SetVertexBuffersCommand : IGALCommand
+ {
+ 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);
+ }
+ }
+}