Class VkPhysicalDevicePushDescriptorPropertiesKHR

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

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

    If the VkPhysicalDevicePushDescriptorPropertiesKHR structure is included in the pNext chain of VkPhysicalDeviceProperties2, it is filled with the implementation-dependent limits.

    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • maxPushDescriptors – the maximum number of descriptors that can be used in a descriptor set created with DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR set.

    Layout

    
     struct VkPhysicalDevicePushDescriptorPropertiesKHR {
         VkStructureType sType;
         void * pNext;
         uint32_t maxPushDescriptors;
     }