mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-06 07:36:26 +02:00
18 lines
542 B
C#
18 lines
542 B
C#
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Renderer
|
|
{
|
|
struct ResetCounterCommand : IGALCommand, IGALCommand<ResetCounterCommand>
|
|
{
|
|
public readonly CommandType CommandType => CommandType.ResetCounter;
|
|
private CounterType _type;
|
|
|
|
public void Set(CounterType type)
|
|
{
|
|
_type = type;
|
|
}
|
|
|
|
public static void Run(ref ResetCounterCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
renderer.ResetCounter(command._type);
|
|
}
|
|
}
|
|
}
|