Fix validation error for query reset

Need to think of a better way to do this.
This commit is contained in:
riperiperi 2022-03-14 20:30:56 +00:00
parent 05a736b6d3
commit 90ae2dbf69

View file

@ -297,6 +297,7 @@ namespace Ryujinx.Graphics.Vulkan
foreach (var queryPool in _activeQueries)
{
Gd.Api.CmdResetQueryPool(CommandBuffer, queryPool, 0, 1);
Gd.Api.CmdBeginQuery(CommandBuffer, queryPool, 0, 0);
}