C Specification
Bits which can be set in VkQueryPoolCreateInfo::flags
,
specifying options for query pools, are:
// Provided by VK_VERSION_1_0
typedef enum VkQueryPoolCreateFlagBits {
// Provided by VK_KHR_maintenance9
VK_QUERY_POOL_CREATE_RESET_BIT_KHR = 0x00000001,
} VkQueryPoolCreateFlagBits;
Description
-
VK_QUERY_POOL_CREATE_RESET_BIT_KHR
specifies that queries in the query pool are initialized on creation and do not need to be reset before first use.
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.