mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-16 23:16:29 +02:00
12 lines
439 B
C#
12 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();
|
|
}
|
|
}
|
|
}
|