C Specification
To reset a range of queries in a query pool on the host, call:
void vkResetQueryPool(
    VkDevice                                    device,
    VkQueryPool                                 queryPool,
    uint32_t                                    firstQuery,
    uint32_t                                    queryCount);or the equivalent command
void vkResetQueryPoolEXT(
    VkDevice                                    device,
    VkQueryPool                                 queryPool,
    uint32_t                                    firstQuery,
    uint32_t                                    queryCount);Parameters
- 
deviceis the logical device that owns the query pool.
- 
queryPoolis the handle of the query pool managing the queries being reset.
- 
firstQueryis the initial query index to reset.
- 
queryCountis the number of queries to reset.
Description
This command sets the status of query indices [firstQuery,
firstQuery +  queryCount - 1] to unavailable.
If queryPool is VK_QUERY_TYPE_PERFORMANCE_QUERY_KHR this command
sets the status of query indices [firstQuery, firstQuery
+  queryCount - 1] to unavailable for each pass.
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.
Copyright
Copyright (c) 2014-2020 Khronos Group. This work is licensed under a Creative Commons Attribution 4.0 International License.