mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 10:09:42 -06:00
13 lines
415 B
C#
13 lines
415 B
C#
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Renderer
|
|
{
|
|
struct UpdateCountersCommand : IGALCommand, IGALCommand<UpdateCountersCommand>
|
|
{
|
|
public readonly CommandType CommandType => CommandType.UpdateCounters;
|
|
|
|
public static void Run(ref UpdateCountersCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
renderer.UpdateCounters();
|
|
}
|
|
}
|
|
}
|