logo

Structs

A descriptor set created from a SingleLayoutDescSetPool.
SingleLayoutDescSetPool is a convenience wrapper provided by Vulkano not to be confused with VkDescriptorPool. Its function is to provide access to pool(s) to allocate descriptor sets from and optimizes for a specific layout which must not have a variable descriptor count. If you need a variable descriptor count see SingleLayoutVariableDescSetPool. For a more general purpose pool see StandardDescriptorPool.
Much like SingleLayoutDescSetPool, except that it allows you to allocate descriptor sets with a variable descriptor count. As this has more overhead, you should only use this pool if you need the functionality and prefer SingleLayoutDescSetPool otherwise. For a more general purpose pool see StandardDescriptorPool.