mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-22 17:10:19 +00:00
58 lines
1.5 KiB
C#
58 lines
1.5 KiB
C#
using Ryujinx.Graphics.GAL;
|
|
using Silk.NET.Vulkan;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan.Queries
|
|
{
|
|
class Counters : IDisposable
|
|
{
|
|
private readonly CounterQueue[] _counterQueues;
|
|
private readonly PipelineFull _pipeline;
|
|
|
|
public Counters(VulkanGraphicsDevice gd, Device device, PipelineFull pipeline)
|
|
{
|
|
_pipeline = pipeline;
|
|
|
|
int count = Enum.GetNames(typeof(CounterType)).Length;
|
|
|
|
_counterQueues = new CounterQueue[count];
|
|
|
|
for (int index = 0; index < count; index++)
|
|
{
|
|
CounterType type = (CounterType)index;
|
|
_counterQueues[index] = new CounterQueue(gd, device, pipeline, type);
|
|
}
|
|
}
|
|
|
|
public CounterQueueEvent QueueReport(CounterType type, EventHandler<ulong> resultHandler, bool hostReserved)
|
|
{
|
|
return _counterQueues[(int)type].QueueReport(resultHandler, _pipeline.DrawCount, hostReserved);
|
|
}
|
|
|
|
public void QueueReset(CounterType type)
|
|
{
|
|
_counterQueues[(int)type].QueueReset();
|
|
}
|
|
|
|
public void Update()
|
|
{
|
|
foreach (var queue in _counterQueues)
|
|
{
|
|
queue.Flush(false);
|
|
}
|
|
}
|
|
|
|
public void Flush(CounterType type)
|
|
{
|
|
_counterQueues[(int)type].Flush(true);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
foreach (var queue in _counterQueues)
|
|
{
|
|
queue.Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|