Enum

VkQueryPoolCreateFlagBits

Bitmask specifying query pool properties

Bits which can be set in VkQueryPoolCreateInfo::flags, specifying options for query pools, are:

typedef enum VkQueryPoolCreateFlagBits {

    // Provided by extensions
    VK_QUERY_POOL_CREATE_RESET_BIT_KHR = 0x00000001,
} VkQueryPoolCreateFlagBits;
  • 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.