mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 14:25:45 +00:00
Vulkan Query Cache: make sure to wait for the query result.
This commit is contained in:
parent
b431a46aa0
commit
f718c363a3
1 changed files with 2 additions and 1 deletions
|
@ -117,7 +117,8 @@ u64 HostCounter::BlockingQuery() const {
|
|||
cache.GetScheduler().Wait(tick);
|
||||
u64 data;
|
||||
const VkResult query_result = cache.GetDevice().GetLogical().GetQueryResults(
|
||||
query.first, query.second, 1, sizeof(data), &data, sizeof(data), VK_QUERY_RESULT_64_BIT);
|
||||
query.first, query.second, 1, sizeof(data), &data, sizeof(data),
|
||||
VK_QUERY_RESULT_64_BIT | VK_QUERY_RESULT_WAIT_BIT);
|
||||
|
||||
switch (query_result) {
|
||||
case VK_SUCCESS:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue