Vulkan-Docs/doc/specs/vulkan/man/VkQueryPoolCreateInfo.txt

66 lines
1.8 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/
VkQueryPoolCreateInfo(3)
========================
Name
----
VkQueryPoolCreateInfo - Structure specifying parameters of a newly created query pool
C Specification
---------------
// refBegin VkQueryPoolCreateInfo - Structure specifying parameters of a newly created query pool
The sname:VkQueryPoolCreateInfo structure is defined as:
include::../api/structs/VkQueryPoolCreateInfo.txt[]
Members
-------
* pname:sType is the type of this structure.
* pname:pNext is `NULL` or a pointer to an extension-specific structure.
* pname:flags is reserved for future use.
* pname:queryType is the type of queries managed by the pool,
and must: be one of the values
+
--
// refBegin VkQueryType - specify the type of queries managed by a query pool
include::../api/enums/VkQueryType.txt[]
--
* pname:queryCount is the number of queries managed by the pool.
* pname:pipelineStatistics is a bitmask indicating which counters will
be returned in queries on the new pool, as described below in
<<queries-pipestats>>. pname:pipelineStatistics is ignored if
pname:queryType is not ename:VK_QUERY_TYPE_PIPELINE_STATISTICS.
Description
-----------
include::../validity/structs/VkQueryPoolCreateInfo.txt[]
See Also
--------
elink:VkQueryPipelineStatisticFlags, elink:VkQueryPoolCreateFlags, elink:VkQueryType, elink:VkStructureType, flink:vkCreateQueryPool
Document Notes
--------------
For more information, see the Vulkan Specification at URL
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkQueryPoolCreateInfo
This page is extracted from the Vulkan Specification.
Fixes and changes should be made to the Specification,not directly.
include::footer.txt[]