Class VkDescriptorPoolCreateInfo
- All Implemented Interfaces:
AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
Description
If multiple VkDescriptorPoolSize structures containing the same descriptor type appear in the pPoolSizes array then the pool will be created with enough storage for the total number of descriptors of each type.
Fragmentation of a descriptor pool is possible and may lead to descriptor set allocation failures. A failure due to fragmentation is defined as failing a descriptor set allocation despite the sum of all outstanding descriptor set allocations from the pool plus the requested allocation requiring no more than the total number of descriptors requested at pool creation. Implementations provide certain guarantees of when fragmentation must not cause allocation failure, as described below.
If a descriptor pool has not had any descriptor sets freed since it was created or most recently reset then fragmentation must not cause an allocation failure (note that this is always the case for a pool created without the DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT bit set). Additionally, if all sets allocated from the pool since it was created or most recently reset use the same number of descriptors (of each type) and the requested allocation also uses that same number of descriptors (of each type), then fragmentation must not cause an allocation failure.
If an allocation failure occurs due to fragmentation, an application can create an additional descriptor pool to perform further descriptor set allocations.
If flags has the DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT bit set, descriptor pool creation may fail with the error ERROR_FRAGMENTATION if the total number of descriptors across all pools (including this one) created with this bit set exceeds maxUpdateAfterBindDescriptorsInAllPools, or if fragmentation of the underlying hardware resources occurs.
If a pPoolSizes[i]::type is DESCRIPTOR_TYPE_MUTABLE_EXT, a VkMutableDescriptorTypeCreateInfoEXT struct in the pNext chain can be used to specify which mutable descriptor types can be allocated from the pool. If included in the pNext chain, VkMutableDescriptorTypeCreateInfoEXT::pMutableDescriptorTypeLists[i] specifies which kind of DESCRIPTOR_TYPE_MUTABLE_EXT descriptors can be allocated from this pool entry. If VkMutableDescriptorTypeCreateInfoEXT does not exist in the pNext chain, or VkMutableDescriptorTypeCreateInfoEXT::pMutableDescriptorTypeLists[i] is out of range, the descriptor pool allocates enough memory to be able to allocate a DESCRIPTOR_TYPE_MUTABLE_EXT descriptor with any supported VkDescriptorType as a mutable descriptor. A mutable descriptor can be allocated from a pool entry if the type list in VkDescriptorSetLayoutCreateInfo is a subset of the type list declared in the descriptor pool, or if the pool entry is created without a descriptor type list. Multiple pPoolSizes entries with DESCRIPTOR_TYPE_MUTABLE_EXT can be declared. When multiple such pool entries are present in pPoolSizes, they specify sets of supported descriptor types which either fully overlap, partially overlap, or are disjoint. Two sets fully overlap if the sets of supported descriptor types are equal. If the sets are not disjoint they partially overlap. A pool entry without a VkMutableDescriptorTypeListEXT assigned to it is considered to partially overlap any other pool entry which has a VkMutableDescriptorTypeListEXT assigned to it. The application must ensure that partial overlap does not exist in pPoolSizes.
Note
The requirement of no partial overlap is intended to resolve ambiguity for validation as there is no confusion which pPoolSizes entries will be allocated from. An implementation is not expected to depend on this requirement.
Valid Usage
- If the
descriptorPoolOverallocationfeature is not enabled, orflagsdoes not haveDESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NVset,maxSetsmust be greater than 0 - If
flagshas theDESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NVorDESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_POOLS_BIT_NVbits set, thendescriptorPoolOverallocationmust be enabled - If
flagshas theDESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXTbit set, then theDESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BITbit must not be set - If
VkPhysicalDeviceMutableDescriptorTypeFeaturesEXT::mutableDescriptorTypeis not enabled,pPoolSizesmust not contain adescriptorTypeofDESCRIPTOR_TYPE_MUTABLE_EXT - If
flagshas theDESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXTbit set,VkPhysicalDeviceMutableDescriptorTypeFeaturesEXT::mutableDescriptorTypemust be enabled - If
pPoolSizescontains adescriptorTypeofDESCRIPTOR_TYPE_MUTABLE_EXT, any otherDESCRIPTOR_TYPE_MUTABLE_EXTelement inpPoolSizesmust not have sets of supported descriptor types which partially overlap - If
pPoolSizescontains adescriptorTypeofDESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK, thepNextchain must include aVkDescriptorPoolInlineUniformBlockCreateInfostructure whosemaxInlineUniformBlockBindingsmember is not zero
Valid Usage (Implicit)
sTypemust beSTRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO- Each
pNextmember of any structure (including this one) in thepNextchain must be eitherNULLor a pointer to a valid instance ofVkDescriptorPoolInlineUniformBlockCreateInfoorVkMutableDescriptorTypeCreateInfoEXT - The
sTypevalue of each struct in thepNextchain must be unique flagsmust be a valid combination ofVkDescriptorPoolCreateFlagBitsvalues- If
poolSizeCountis not 0,pPoolSizesmust be a valid pointer to an array ofpoolSizeCountvalidVkDescriptorPoolSizestructures
See Also
VkDescriptorPoolSize, CreateDescriptorPool
Layout
struct VkDescriptorPoolCreateInfo {
VkStructureType sType();
void const * pNext();
VkDescriptorPoolCreateFlags flags();
uint32_t maxSets();
uint32_t poolSizeCount();
VkDescriptorPoolSize const * pPoolSizes();
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionVkDescriptorPoolCreateInfo(ByteBuffer container) Creates aVkDescriptorPoolCreateInfoinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkDescriptorPoolCreateInfocalloc()Returns a newVkDescriptorPoolCreateInfoinstance allocated withmemCalloc.calloc(int capacity) Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated withmemCalloc.calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkDescriptorPoolCreateInfocalloc(org.lwjgl.system.MemoryStack stack) Returns a newVkDescriptorPoolCreateInfoinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkDescriptorPoolCreateInfoDeprecated.callocStack(int capacity) Deprecated.callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static VkDescriptorPoolCreateInfocallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static VkDescriptorPoolCreateInfocreate()Returns a newVkDescriptorPoolCreateInfoinstance allocated withBufferUtils.create(int capacity) Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated withBufferUtils.static VkDescriptorPoolCreateInfocreate(long address) Returns a newVkDescriptorPoolCreateInfoinstance for the specified memory address.create(long address, int capacity) Create aVkDescriptorPoolCreateInfo.Bufferinstance at the specified memory.static @Nullable VkDescriptorPoolCreateInfocreateSafe(long address) static @Nullable VkDescriptorPoolCreateInfo.BuffercreateSafe(long address, int capacity) intflags()a bitmask ofVkDescriptorPoolCreateFlagBitsspecifying certain supported operations on the pool.flags(int value) Sets the specified value to theflags()field.static VkDescriptorPoolCreateInfomalloc()Returns a newVkDescriptorPoolCreateInfoinstance allocated withmemAlloc.malloc(int capacity) Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated withmemAlloc.malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated on the specifiedMemoryStack.static VkDescriptorPoolCreateInfomalloc(org.lwjgl.system.MemoryStack stack) Returns a newVkDescriptorPoolCreateInfoinstance allocated on the specifiedMemoryStack.static VkDescriptorPoolCreateInfoDeprecated.mallocStack(int capacity) Deprecated.mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static VkDescriptorPoolCreateInfomallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.intmaxSets()the maximum number of descriptor sets that can be allocated from the pool.maxSets(int value) Sets the specified value to themaxSets()field.static intnflags(long struct) Unsafe version offlags().static voidnflags(long struct, int value) Unsafe version offlags.static intnmaxSets(long struct) Unsafe version ofmaxSets().static voidnmaxSets(long struct, int value) Unsafe version ofmaxSets.static longnpNext(long struct) Unsafe version ofpNext().static voidnpNext(long struct, long value) Unsafe version ofpNext.static intnpoolSizeCount(long struct) Unsafe version ofpoolSizeCount().static voidnpoolSizeCount(long struct, int value) Sets the specified value to thepoolSizeCountfield of the specifiedstruct.static @Nullable VkDescriptorPoolSize.BuffernpPoolSizes(long struct) Unsafe version ofpPoolSizes().static voidnpPoolSizes(long struct, @Nullable VkDescriptorPoolSize.Buffer value) Unsafe version ofpPoolSizes.static intnsType(long struct) Unsafe version ofsType().static voidnsType(long struct, int value) Unsafe version ofsType.longpNext()NULLor a pointer to a structure extending this structure.pNext(long value) Sets the specified value to thepNext()field.Prepends the specifiedVkDescriptorPoolInlineUniformBlockCreateInfovalue to thepNextchain.Prepends the specifiedVkDescriptorPoolInlineUniformBlockCreateInfoEXTvalue to thepNextchain.Prepends the specifiedVkMutableDescriptorTypeCreateInfoEXTvalue to thepNextchain.Prepends the specifiedVkMutableDescriptorTypeCreateInfoVALVEvalue to thepNextchain.intthe number of elements inpPoolSizes.@Nullable VkDescriptorPoolSize.Buffera pointer to an array ofVkDescriptorPoolSizestructures, each containing a descriptor type and number of descriptors of that type to be allocated in the pool.pPoolSizes(@Nullable VkDescriptorPoolSize.Buffer value) Sets the address of the specifiedVkDescriptorPoolSize.Bufferto thepPoolSizes()field.set(int sType, long pNext, int flags, int maxSets, @Nullable VkDescriptorPoolSize.Buffer pPoolSizes) Initializes this struct with the specified values.Copies the specified struct data to this struct.intsizeof()intsType()aVkStructureTypevalue identifying this structure.sType(int value) Sets the specified value to thesType()field.Sets theSTRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFOvalue to thesType()field.static voidvalidate(long struct) Validates pointer members that should not beNULL.Methods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
STYPE
public static final int STYPEThe struct member offsets. -
PNEXT
public static final int PNEXTThe struct member offsets. -
FLAGS
public static final int FLAGSThe struct member offsets. -
MAXSETS
public static final int MAXSETSThe struct member offsets. -
POOLSIZECOUNT
public static final int POOLSIZECOUNTThe struct member offsets. -
PPOOLSIZES
public static final int PPOOLSIZESThe struct member offsets.
-
-
Constructor Details
-
VkDescriptorPoolCreateInfo
Creates aVkDescriptorPoolCreateInfoinstance at the current position of the specifiedByteBuffercontainer. Changes to the buffer's content will be visible to the struct instance and vice versa.The created instance holds a strong reference to the container object.
-
-
Method Details
-
sizeof
public int sizeof()- Specified by:
sizeofin classorg.lwjgl.system.Struct<VkDescriptorPoolCreateInfo>
-
sType
public int sType()aVkStructureTypevalue identifying this structure. -
pNext
public long pNext()NULLor a pointer to a structure extending this structure. -
flags
public int flags()a bitmask ofVkDescriptorPoolCreateFlagBitsspecifying certain supported operations on the pool. -
maxSets
public int maxSets()the maximum number of descriptor sets that can be allocated from the pool. -
poolSizeCount
public int poolSizeCount()the number of elements inpPoolSizes. -
pPoolSizes
a pointer to an array ofVkDescriptorPoolSizestructures, each containing a descriptor type and number of descriptors of that type to be allocated in the pool. -
sType
Sets the specified value to thesType()field. -
sType$Default
Sets theSTRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFOvalue to thesType()field. -
pNext
Sets the specified value to thepNext()field. -
pNext
Prepends the specifiedVkDescriptorPoolInlineUniformBlockCreateInfovalue to thepNextchain. -
pNext
Prepends the specifiedVkDescriptorPoolInlineUniformBlockCreateInfoEXTvalue to thepNextchain. -
pNext
Prepends the specifiedVkMutableDescriptorTypeCreateInfoEXTvalue to thepNextchain. -
pNext
Prepends the specifiedVkMutableDescriptorTypeCreateInfoVALVEvalue to thepNextchain. -
flags
Sets the specified value to theflags()field. -
maxSets
Sets the specified value to themaxSets()field. -
pPoolSizes
Sets the address of the specifiedVkDescriptorPoolSize.Bufferto thepPoolSizes()field. -
set
public VkDescriptorPoolCreateInfo set(int sType, long pNext, int flags, int maxSets, @Nullable VkDescriptorPoolSize.Buffer pPoolSizes) Initializes this struct with the specified values. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newVkDescriptorPoolCreateInfoinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newVkDescriptorPoolCreateInfoinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newVkDescriptorPoolCreateInfoinstance allocated withBufferUtils. -
create
Returns a newVkDescriptorPoolCreateInfoinstance for the specified memory address. -
createSafe
-
malloc
Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aVkDescriptorPoolCreateInfo.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
@Deprecated public static VkDescriptorPoolCreateInfo mallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
@Deprecated public static VkDescriptorPoolCreateInfo callocStack(org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
mallocStack
@Deprecated public static VkDescriptorPoolCreateInfo.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
@Deprecated public static VkDescriptorPoolCreateInfo.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newVkDescriptorPoolCreateInfoinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newVkDescriptorPoolCreateInfoinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
public static VkDescriptorPoolCreateInfo.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
public static VkDescriptorPoolCreateInfo.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkDescriptorPoolCreateInfo.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nsType
public static int nsType(long struct) Unsafe version ofsType(). -
npNext
public static long npNext(long struct) Unsafe version ofpNext(). -
nflags
public static int nflags(long struct) Unsafe version offlags(). -
nmaxSets
public static int nmaxSets(long struct) Unsafe version ofmaxSets(). -
npoolSizeCount
public static int npoolSizeCount(long struct) Unsafe version ofpoolSizeCount(). -
npPoolSizes
Unsafe version ofpPoolSizes(). -
nsType
public static void nsType(long struct, int value) Unsafe version ofsType. -
npNext
public static void npNext(long struct, long value) Unsafe version ofpNext. -
nflags
public static void nflags(long struct, int value) Unsafe version offlags. -
nmaxSets
public static void nmaxSets(long struct, int value) Unsafe version ofmaxSets. -
npoolSizeCount
public static void npoolSizeCount(long struct, int value) Sets the specified value to thepoolSizeCountfield of the specifiedstruct. -
npPoolSizes
Unsafe version ofpPoolSizes. -
validate
public static void validate(long struct) Validates pointer members that should not beNULL.- Parameters:
struct- the struct to validate
-