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