mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:18:40 +00:00
7fea26e97e
* Introduce new IGALCommand<T> interface and use it * Remove use of reflection on GAL multithreading * Unmanaged constraint
24 lines
818 B
C#
24 lines
818 B
C#
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct SetUniformBuffersCommand : IGALCommand, IGALCommand<SetUniformBuffersCommand>
|
|
{
|
|
public CommandType CommandType => CommandType.SetUniformBuffers;
|
|
private SpanRef<BufferAssignment> _buffers;
|
|
|
|
public void Set(SpanRef<BufferAssignment> buffers)
|
|
{
|
|
_buffers = buffers;
|
|
}
|
|
|
|
public static void Run(ref SetUniformBuffersCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
Span<BufferAssignment> buffers = command._buffers.Get(threaded);
|
|
renderer.Pipeline.SetUniformBuffers(threaded.Buffers.MapBufferRanges(buffers));
|
|
command._buffers.Dispose(threaded);
|
|
}
|
|
}
|
|
}
|