mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-26 12:13:00 +00:00
13 lines
445 B
C#
13 lines
445 B
C#
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct CommandBufferBarrierCommand : IGALCommand, IGALCommand<CommandBufferBarrierCommand>
|
|
{
|
|
public readonly CommandType CommandType => CommandType.CommandBufferBarrier;
|
|
|
|
public static void Run(ref CommandBufferBarrierCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
renderer.Pipeline.CommandBufferBarrier();
|
|
}
|
|
}
|
|
}
|