diff options
author | riperiperi <rhy3756547@hotmail.com> | 2020-12-03 18:42:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 19:42:59 +0100 |
commit | c00d39b675d0ebf7ebf5be1135addbbee2510d93 (patch) | |
tree | 8e94755778ec6261fd08e270e8d6fff1f01f5e6a /Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs | |
parent | 2c39a4f15d44156779c6c926d8feda26a4a24605 (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.cs | 6 |
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(); } |