60 lines
1.4 KiB
Plaintext
60 lines
1.4 KiB
Plaintext
// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a
|
|
// Creative Commons Attribution 4.0 International License; see
|
|
// http://creativecommons.org/licenses/by/4.0/
|
|
|
|
vkCmdResetQueryPool(3)
|
|
======================
|
|
|
|
Name
|
|
----
|
|
vkCmdResetQueryPool - Reset queries in a query pool.
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
// refBegin vkCmdResetQueryPool Reset queries in a query pool.
|
|
|
|
To reset a range of queries in a query pool, call:
|
|
|
|
include::../api/protos/vkCmdResetQueryPool.txt[]
|
|
|
|
|
|
Parameters
|
|
----------
|
|
|
|
* pname:commandBuffer is the command buffer into which this command will
|
|
be recorded.
|
|
* pname:queryPool is the handle of the query pool managing the queries
|
|
being reset.
|
|
* pname:firstQuery is the initial query index to reset.
|
|
* pname:queryCount is the number of queries to reset.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
When executed on a queue, this command sets the status of query indices
|
|
latexmath:[$firstQuery,firstQuery+queryCount-1$] to unavailable.
|
|
|
|
include::../validity/protos/vkCmdResetQueryPool.txt[]
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
slink:VkCommandBuffer, slink:VkQueryPool
|
|
|
|
|
|
Document Notes
|
|
--------------
|
|
|
|
For more information, see the Vulkan Specification at URL
|
|
|
|
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#vkCmdResetQueryPool
|
|
|
|
This page is extracted from the Vulkan Specification.
|
|
Fixes and changes should be made to the Specification,not directly.
|
|
|
|
include::footer.txt[]
|
|
|