C Specification
Specific status codes that can be returned from a query are:
// Provided by VK_KHR_video_queue
typedef enum VkQueryResultStatusKHR {
VK_QUERY_RESULT_STATUS_ERROR_KHR = -1,
VK_QUERY_RESULT_STATUS_NOT_READY_KHR = 0,
VK_QUERY_RESULT_STATUS_COMPLETE_KHR = 1,
} VkQueryResultStatusKHR;
Description
-
VK_QUERY_RESULT_STATUS_NOT_READY_KHR
specifies that the query result is not yet available. -
VK_QUERY_RESULT_STATUS_ERROR_KHR
specifies that operations did not complete successfully. -
VK_QUERY_RESULT_STATUS_COMPLETE_KHR
specifies that operations completed successfully and the query result is available.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.