UpdateCountersCommand.cs 373 B

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