Class VkQueryPoolCreateInfo

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkQueryPoolCreateInfo>
org.lwjgl.vulkan.VkQueryPoolCreateInfo
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkQueryPoolCreateInfo extends org.lwjgl.system.Struct<VkQueryPoolCreateInfo> implements org.lwjgl.system.NativeResource
Structure specifying parameters of a newly created query pool.
Description

pipelineStatistics is ignored if queryType is not QUERY_TYPE_PIPELINE_STATISTICS.

Valid Usage
Valid Usage (Implicit)
See Also

CreateQueryPool

Layout


 struct VkQueryPoolCreateInfo {
     VkStructureType sType();
     void const * pNext();
     VkQueryPoolCreateFlags flags();
     VkQueryType queryType();
     uint32_t queryCount();
     VkQueryPipelineStatisticFlags pipelineStatistics();
 }