mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-07 08:31:07 -06:00
![gdkchan](/assets/img/avatar_default.png)
* Introduce new IGALCommand<T> interface and use it * Remove use of reflection on GAL multithreading * Unmanaged constraint
13 lines
439 B
C#
13 lines
439 B
C#
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct CommandBufferBarrierCommand : IGALCommand, IGALCommand<CommandBufferBarrierCommand>
|
|
{
|
|
public CommandType CommandType => CommandType.CommandBufferBarrier;
|
|
|
|
public static void Run(ref CommandBufferBarrierCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
renderer.Pipeline.CommandBufferBarrier();
|
|
}
|
|
}
|
|
}
|