Class VkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT

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

public class VkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT extends org.lwjgl.system.Struct<VkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT> implements org.lwjgl.system.NativeResource
Structure describing push descriptor limits that can be supported by an implementation.
Description

If the VkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to GetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT {
     VkStructureType sType();
     void * pNext();
     uint32_t maxIndirectPipelineCount();
     uint32_t maxIndirectShaderObjectCount();
     uint32_t maxIndirectSequenceCount();
     uint32_t maxIndirectCommandsTokenCount();
     uint32_t maxIndirectCommandsTokenOffset();
     uint32_t maxIndirectCommandsIndirectStride();
     VkIndirectCommandsInputModeFlagsEXT supportedIndirectCommandsInputModes();
     VkShaderStageFlags supportedIndirectCommandsShaderStages();
     VkShaderStageFlags supportedIndirectCommandsShaderStagesPipelineBinding();
     VkShaderStageFlags supportedIndirectCommandsShaderStagesShaderBinding();
     VkBool32 deviceGeneratedCommandsTransformFeedback();
     VkBool32 deviceGeneratedCommandsMultiDrawIndirectCount();
 }