Home
last modified time | relevance | path

Searched refs:DescriptorPoolCreateInfo (Results 1 – 4 of 4) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawCreateInfoUtil.hpp265 class DescriptorPoolCreateInfo : public vk::VkDescriptorPoolCreateInfo class
268 DescriptorPoolCreateInfo (const std::vector<vk::VkDescriptorPoolSize>& poolSizeCounts,
272 DescriptorPoolCreateInfo& addDescriptors (vk::VkDescriptorType type, deUint32 count);
DvktDrawCreateInfoUtil.cpp600 DescriptorPoolCreateInfo::DescriptorPoolCreateInfo (const std::vector<vk::VkDescriptorPoolSize>& po… in DescriptorPoolCreateInfo() function in vkt::Draw::DescriptorPoolCreateInfo
613 DescriptorPoolCreateInfo& DescriptorPoolCreateInfo::addDescriptors (vk::VkDescriptorType type, deUi… in addDescriptors()
/external/vulkan-validation-layers/include/vulkan/
Dvulkan.hpp13643 struct DescriptorPoolCreateInfo struct
13645DescriptorPoolCreateInfo( DescriptorPoolCreateFlags flags_ = DescriptorPoolCreateFlags(), uint32_t… in DescriptorPoolCreateInfo() argument
13655 DescriptorPoolCreateInfo( VkDescriptorPoolCreateInfo const & rhs ) in DescriptorPoolCreateInfo() argument
13657 memcpy( this, &rhs, sizeof(DescriptorPoolCreateInfo) ); in DescriptorPoolCreateInfo()
13660 DescriptorPoolCreateInfo& operator=( VkDescriptorPoolCreateInfo const & rhs ) in operator =() argument
13662 memcpy( this, &rhs, sizeof(DescriptorPoolCreateInfo) ); in operator =()
13666 DescriptorPoolCreateInfo& setSType( StructureType sType_ ) in setSType() argument
13672 DescriptorPoolCreateInfo& setPNext( const void* pNext_ ) in setPNext() argument
13678 DescriptorPoolCreateInfo& setFlags( DescriptorPoolCreateFlags flags_ ) in setFlags() argument
13684 DescriptorPoolCreateInfo& setMaxSets( uint32_t maxSets_ ) in setMaxSets() argument
[all …]
/external/vulkan-validation-layers/demos/
Dcube.cpp1597 auto const descriptor_pool = vk::DescriptorPoolCreateInfo() in prepare_descriptor_pool()