vulkan: error out if query is called without being initialized
This commit is contained in:
parent
fd86c373c2
commit
06483d039a
@ -446,6 +446,11 @@ VkResult ff_vk_exec_get_query(FFVulkanContext *s, FFVkExecContext *e,
|
|||||||
if (!e->had_submission)
|
if (!e->had_submission)
|
||||||
return VK_INCOMPLETE;
|
return VK_INCOMPLETE;
|
||||||
|
|
||||||
|
if (!e->query_data) {
|
||||||
|
av_log(s, AV_LOG_ERROR, "Requested a query with a NULL query_data pointer!\n");
|
||||||
|
return VK_INCOMPLETE;
|
||||||
|
}
|
||||||
|
|
||||||
qf |= pool->query_64bit ?
|
qf |= pool->query_64bit ?
|
||||||
VK_QUERY_RESULT_64_BIT : 0x0;
|
VK_QUERY_RESULT_64_BIT : 0x0;
|
||||||
qf |= pool->query_statuses ?
|
qf |= pool->query_statuses ?
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user