Home | History | Annotate | Download | only in vulkan

Lines Matching refs:CommandPoolCreateInfo

12580   struct CommandPoolCreateInfo
12582 CommandPoolCreateInfo( CommandPoolCreateFlags flags_ = CommandPoolCreateFlags(), uint32_t queueFamilyIndex_ = 0 )
12590 CommandPoolCreateInfo( VkCommandPoolCreateInfo const & rhs )
12592 memcpy( this, &rhs, sizeof(CommandPoolCreateInfo) );
12595 CommandPoolCreateInfo& operator=( VkCommandPoolCreateInfo const & rhs )
12597 memcpy( this, &rhs, sizeof(CommandPoolCreateInfo) );
12601 CommandPoolCreateInfo& setSType( StructureType sType_ )
12607 CommandPoolCreateInfo& setPNext( const void* pNext_ )
12613 CommandPoolCreateInfo& setFlags( CommandPoolCreateFlags flags_ )
12619 CommandPoolCreateInfo& setQueueFamilyIndex( uint32_t queueFamilyIndex_ )
12630 bool operator==( CommandPoolCreateInfo const& rhs ) const
12638 bool operator!=( CommandPoolCreateInfo const& rhs ) const
12651 static_assert( sizeof( CommandPoolCreateInfo ) == sizeof( VkCommandPoolCreateInfo ), "struct and wrapper have different size!" );
16933 Result createCommandPool( const CommandPoolCreateInfo* pCreateInfo, const AllocationCallbacks* pAllocator, CommandPool* pCommandPool ) const
16939 ResultValueType<CommandPool>::type createCommandPool( const CommandPoolCreateInfo & createInfo, Optional<const AllocationCallbacks> allocator = nullptr ) const
19763 case StructureType::eCommandPoolCreateInfo: return "CommandPoolCreateInfo";