/external/swiftshader/src/Vulkan/ |
D | VkPipelineLayout.hpp | 23 class PipelineLayout : public Object<PipelineLayout, VkPipelineLayout> class 26 PipelineLayout(const VkPipelineLayoutCreateInfo* pCreateInfo, void* mem); 27 ~PipelineLayout() = delete; 35 static inline PipelineLayout* Cast(VkPipelineLayout object) in Cast() 37 return reinterpret_cast<PipelineLayout*>(object); in Cast()
|
D | VkPipelineLayout.cpp | 20 PipelineLayout::PipelineLayout(const VkPipelineLayoutCreateInfo* pCreateInfo, void* mem) in PipelineLayout() function in vk::PipelineLayout 24 void PipelineLayout::destroy(const VkAllocationCallbacks* pAllocator) in destroy() 28 size_t PipelineLayout::ComputeRequiredAllocationSize(const VkPipelineLayoutCreateInfo* pCreateInfo) in ComputeRequiredAllocationSize()
|
D | libVulkan.cpp | 1025 return vk::PipelineLayout::Create(pAllocator, pCreateInfo, pPipelineLayout); in vkCreatePipelineLayout()
|
/external/vulkan-validation-layers/tests/ |
D | vktestbinding.h | 73 class PipelineLayout; variable 587 class PipelineLayout : public internal::NonDispHandle<VkPipelineLayout> { 589 PipelineLayout() NOEXCEPT : NonDispHandle(){}; in PipelineLayout() function 590 ~PipelineLayout(); 593 PipelineLayout(PipelineLayout &&src) : NonDispHandle(std::move(src)){}; in PipelineLayout() function 595 PipelineLayout &operator=(PipelineLayout &&src) { 596 this->~PipelineLayout();
|
D | vkrenderframework.h | 400 vk_testing::PipelineLayout m_pipeline_layout; 417 class VkPipelineLayoutObj : public vk_testing::PipelineLayout { 424 VkPipelineLayoutObj(VkPipelineLayoutObj &&src) : PipelineLayout(std::move(src)) {} in VkPipelineLayoutObj() 426 PipelineLayout::operator=(std::move(src));
|
D | vktestbinding.cpp | 668 NON_DISPATCHABLE_HANDLE_DTOR(PipelineLayout, vkDestroyPipelineLayout) in NON_DISPATCHABLE_HANDLE_DTOR() argument 670 void PipelineLayout::init(const Device &dev, VkPipelineLayoutCreateInfo &info, in NON_DISPATCHABLE_HANDLE_DTOR()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiObjectManagementTests.cpp | 1488 struct PipelineLayout struct 1534 return getSafeObjectCount<PipelineLayout>(context, params, DEFAULT_MAX_CONCURRENT_OBJECTS); in getMaxConcurrent() 1600 Dependency<PipelineLayout> layout; 1607 , layout (env, PipelineLayout::Parameters::singleDescriptorSet( in Resources() 1832 Dependency<PipelineLayout> layout; 1849 , layout (env, PipelineLayout::Parameters::singleDescriptorSet(getDescriptorSetLayout())) in Resources() 2758 CaseDescription<PipelineLayout> pipelineLayout; 2909 static const NamedParameters<PipelineLayout> s_pipelineLayoutCases[] = in createObjectManagementTests() 2911 { "pipeline_layout_empty", PipelineLayout::Parameters::empty() }, in createObjectManagementTests() 2912 …{ "pipeline_layout_single", PipelineLayout::Parameters::singleDescriptorSet(singleUboDescLayout) } in createObjectManagementTests() [all …]
|
/external/vulkan-headers/include/vulkan/ |
D | vulkan.hpp | 11324 class PipelineLayout class 11327 VULKAN_HPP_CONSTEXPR PipelineLayout() in PipelineLayout() function in VULKAN_HPP_NAMESPACE::PipelineLayout 11331 VULKAN_HPP_CONSTEXPR PipelineLayout( std::nullptr_t ) in PipelineLayout() function in VULKAN_HPP_NAMESPACE::PipelineLayout 11335 VULKAN_HPP_TYPESAFE_EXPLICIT PipelineLayout( VkPipelineLayout pipelineLayout ) in PipelineLayout() function in VULKAN_HPP_NAMESPACE::PipelineLayout 11340 PipelineLayout & operator=(VkPipelineLayout pipelineLayout) in operator =() 11347 PipelineLayout & operator=( std::nullptr_t ) in operator =() 11353 bool operator==( PipelineLayout const & rhs ) const in operator ==() 11358 bool operator!=(PipelineLayout const & rhs ) const in operator !=() 11363 bool operator<(PipelineLayout const & rhs ) const in operator <() 11386 …static_assert( sizeof( PipelineLayout ) == sizeof( VkPipelineLayout ), "handle and wrapper have di… [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 179 VK_NULL_DEFINE_DEVICE_OBJ(PipelineLayout);
|
D | vkNullDriverImpl.inl | 79 …VK_NULL_RETURN((*pPipelineLayout = allocateNonDispHandle<PipelineLayout, VkPipelineLayout>(device,… 311 freeNonDispHandle<PipelineLayout, VkPipelineLayout>(pipelineLayout, pAllocator);
|