mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
- fix vkGetQueryPoolResults: parameter dataSize must be greater than 0
This commit is contained in:
parent
80c09c52bd
commit
a6515765c8
1 changed files with 2 additions and 1 deletions
|
@ -845,7 +845,8 @@ void VulkanFrameBuffer::PopGroup()
|
||||||
void VulkanFrameBuffer::UpdateGpuStats()
|
void VulkanFrameBuffer::UpdateGpuStats()
|
||||||
{
|
{
|
||||||
uint64_t timestamps[MaxTimestampQueries];
|
uint64_t timestamps[MaxTimestampQueries];
|
||||||
mTimestampQueryPool->getResults(0, mNextTimestampQuery, sizeof(uint64_t) * mNextTimestampQuery, timestamps, sizeof(uint64_t), VK_QUERY_RESULT_64_BIT | VK_QUERY_RESULT_WAIT_BIT);
|
if (mNextTimestampQuery > 0)
|
||||||
|
mTimestampQueryPool->getResults(0, mNextTimestampQuery, sizeof(uint64_t) * mNextTimestampQuery, timestamps, sizeof(uint64_t), VK_QUERY_RESULT_64_BIT | VK_QUERY_RESULT_WAIT_BIT);
|
||||||
|
|
||||||
double timestampPeriod = device->PhysicalDevice.Properties.limits.timestampPeriod;
|
double timestampPeriod = device->PhysicalDevice.Properties.limits.timestampPeriod;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue