Class VkDescriptorPoolInlineUniformBlockCreateInfoEXT

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

    public class VkDescriptorPoolInlineUniformBlockCreateInfoEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying the maximum number of inline uniform block bindings of a newly created descriptor pool.
    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • maxInlineUniformBlockBindings – the number of inline uniform block bindings to allocate.

    Layout

    
     struct VkDescriptorPoolInlineUniformBlockCreateInfoEXT {
         VkStructureType sType;
         void const * pNext;
         uint32_t maxInlineUniformBlockBindings;
     }