TextureBarrierCommand.cs 373 B

123456789101112
  1. namespace Ryujinx.Graphics.GAL.Multithreading.Commands
  2. {
  3. struct TextureBarrierCommand : IGALCommand
  4. {
  5. public CommandType CommandType => CommandType.TextureBarrier;
  6. public static void Run(ref TextureBarrierCommand command, ThreadedRenderer threaded, IRenderer renderer)
  7. {
  8. renderer.Pipeline.TextureBarrier();
  9. }
  10. }
  11. }