/ src / Ryujinx.Graphics.GAL / Multithreading / Commands / CommandBufferBarrierCommand.cs
CommandBufferBarrierCommand.cs
 1  namespace Ryujinx.Graphics.GAL.Multithreading.Commands
 2  {
 3      struct CommandBufferBarrierCommand : IGALCommand, IGALCommand<CommandBufferBarrierCommand>
 4      {
 5          public readonly CommandType CommandType => CommandType.CommandBufferBarrier;
 6  
 7          public static void Run(ref CommandBufferBarrierCommand command, ThreadedRenderer threaded, IRenderer renderer)
 8          {
 9              renderer.Pipeline.CommandBufferBarrier();
10          }
11      }
12  }