| 123456789101112 |
- namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Renderer
- {
- struct UpdateCountersCommand : IGALCommand
- {
- public CommandType CommandType => CommandType.UpdateCounters;
- public static void Run(ref UpdateCountersCommand command, ThreadedRenderer threaded, IRenderer renderer)
- {
- renderer.UpdateCounters();
- }
- }
- }
|