aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
diff options
context:
space:
mode:
authorriperiperi <rhy3756547@hotmail.com>2020-12-03 18:42:59 +0000
committerGitHub <noreply@github.com>2020-12-03 19:42:59 +0100
commitc00d39b675d0ebf7ebf5be1135addbbee2510d93 (patch)
tree8e94755778ec6261fd08e270e8d6fff1f01f5e6a /Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
parent2c39a4f15d44156779c6c926d8feda26a4a24605 (diff)
Dummy out gl queries with 0 draws, remove glFlush call (#1773)
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs')
-rw-r--r--Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs b/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
index 0fba24a1..e21ce55d 100644
--- a/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
+++ b/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
@@ -16,18 +16,22 @@ namespace Ryujinx.Graphics.OpenGL.Queries
public bool Disposed { get; private set; }
public bool Invalid { get; set; }
+ public ulong DrawIndex { get; }
+
private CounterQueue _queue;
private BufferedQuery _counter;
private object _lock = new object();
- public CounterQueueEvent(CounterQueue queue, QueryTarget type)
+ public CounterQueueEvent(CounterQueue queue, QueryTarget type, ulong drawIndex)
{
_queue = queue;
_counter = queue.GetQueryObject();
Type = type;
+ DrawIndex = drawIndex;
+
_counter.Begin();
}