// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a // Creative Commons Attribution 4.0 International License; see // http://creativecommons.org/licenses/by/4.0/ VkDescriptorPool(3) =================== Name ---- VkDescriptorPool - Opaque handle to a descriptor pool object C Specification --------------- // refBegin VkDescriptorPool - Opaque handle to a descriptor pool object A _descriptor pool_ maintains a pool of descriptors, from which descriptor sets are allocated. Descriptor pools are externally synchronized, meaning that the application mustnot: allocate and/or free descriptor sets from the same pool in multiple threads simultaneously. Descriptor pools are represented by sname:VkDescriptorPool handles: include::../api/handles/VkDescriptorPool.txt[] Description ----------- // refEnd VkDescriptorPool See Also -------- slink:VkDescriptorSetAllocateInfo, flink:vkCreateDescriptorPool, flink:vkDestroyDescriptorPool, flink:vkFreeDescriptorSets, flink:vkResetDescriptorPool Document Notes -------------- For more information, see the Vulkan Specification at URL https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkDescriptorPool This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification,not directly. include::footer.txt[]