/third_party/mesa3d/src/virtio/venus-protocol/ |
H A D | vn_protocol_driver_pipeline_layout.h | 119 static inline size_t vn_sizeof_vkCreatePipelineLayout(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) in vn_sizeof_vkCreatePipelineLayout() argument 132 cmd_size += vn_sizeof_simple_pointer(pPipelineLayout); in vn_sizeof_vkCreatePipelineLayout() 133 if (pPipelineLayout) in vn_sizeof_vkCreatePipelineLayout() 134 cmd_size += vn_sizeof_VkPipelineLayout(pPipelineLayout); in vn_sizeof_vkCreatePipelineLayout() 139 static inline void vn_encode_vkCreatePipelineLayout(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) in vn_encode_vkCreatePipelineLayout() argument 151 if (vn_encode_simple_pointer(enc, pPipelineLayout)) in vn_encode_vkCreatePipelineLayout() 152 vn_encode_VkPipelineLayout(enc, pPipelineLayout); in vn_encode_vkCreatePipelineLayout() 155 static inline size_t vn_sizeof_vkCreatePipelineLayout_reply(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) in vn_sizeof_vkCreatePipelineLayout_reply() argument 165 cmd_size += vn_sizeof_simple_pointer(pPipelineLayout); in vn_sizeof_vkCreatePipelineLayout_reply() 166 if (pPipelineLayout) in vn_sizeof_vkCreatePipelineLayout_reply() 172 vn_decode_vkCreatePipelineLayout_reply(struct vn_cs_decoder *dec, VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) vn_decode_vkCreatePipelineLayout_reply() argument 243 vn_submit_vkCreatePipelineLayout(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout, struct vn_instance_submit_command *submit) vn_submit_vkCreatePipelineLayout() argument 285 vn_call_vkCreatePipelineLayout(struct vn_instance *vn_instance, VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) vn_call_vkCreatePipelineLayout() argument 301 vn_async_vkCreatePipelineLayout(struct vn_instance *vn_instance, VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) vn_async_vkCreatePipelineLayout() argument [all...] |
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_pipeline_layout.c | 97 VkPipelineLayout *pPipelineLayout) in vk_common_CreatePipelineLayout() 107 *pPipelineLayout = vk_pipeline_layout_to_handle(layout); in vk_common_CreatePipelineLayout() 94 vk_common_CreatePipelineLayout(VkDevice _device, const VkPipelineLayoutCreateInfo *pCreateInfo, UNUSED const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) vk_common_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/amd/vulkan/radix_sort/ |
H A D | radv_radix_sort.c | 119 const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) in vkCreatePipelineLayout() 123 pPipelineLayout); in vkCreatePipelineLayout() 118 vkCreatePipelineLayout(VkDevice _device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) vkCreatePipelineLayout() argument
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkPlatform.cpp | 408 VkPipelineLayout* pPipelineLayout) const in createPipelineLayoutHandlerNorm() 411 VkResult result = m_vk.createPipelineLayout(device, pCreateInfo, pAllocator, pPipelineLayout); in createPipelineLayoutHandlerNorm() 412 m_resourceInterface->registerObjectHash(pPipelineLayout->getInternal(), calculatePipelineLayoutHash(*pCreateInfo, m_resourceInterface->getObjectHashes())); in createPipelineLayoutHandlerNorm() 419 VkPipelineLayout* pPipelineLayout) const in createPipelineLayoutHandlerStat() 423 *pPipelineLayout = VkPipelineLayout(m_resourceInterface->incResourceCounter()); in createPipelineLayoutHandlerStat() 424 m_resourceInterface->registerObjectHash(pPipelineLayout->getInternal(), calculatePipelineLayoutHash(*pCreateInfo, m_resourceInterface->getObjectHashes())); in createPipelineLayoutHandlerStat() 425 m_resourceInterface->createPipelineLayout(device, pCreateInfo, pAllocator, pPipelineLayout); in createPipelineLayoutHandlerStat()
|
H A D | vkResourceInterface.hpp | 112 VkPipelineLayout* pPipelineLayout) const = 0; 218 typedef VKAPI_ATTR VkResult (VKAPI_CALL* CreatePipelineLayoutFunc) (VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout); 276 VkPipelineLayout* pPipelineLayout) const override;
|
H A D | vkPlatform.hpp | 210 VkPipelineLayout* pPipelineLayout) const; 214 VkPipelineLayout* pPipelineLayout) const;
|
H A D | vkResourceInterface.cpp | 868 VkPipelineLayout* pPipelineLayout) const in createPipelineLayout() 872 m_pipelineInput.pipelineLayouts.insert({*pPipelineLayout, writeJSON_VkPipelineLayoutCreateInfo(*pCreateInfo) }); in createPipelineLayout()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_descriptor_set.c | 126 VkPipelineLayout *pPipelineLayout) in panvk_CreatePipelineLayout() 200 *pPipelineLayout = panvk_pipeline_layout_to_handle(layout); in panvk_CreatePipelineLayout() 123 panvk_CreatePipelineLayout(VkDevice _device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) panvk_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_pipeline.c | 75 VkPipelineLayout *pPipelineLayout) in vn_CreatePipelineLayout() 94 *pPipelineLayout = layout_handle; in vn_CreatePipelineLayout() 72 vn_CreatePipelineLayout(VkDevice device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) vn_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
H A D | lvp_descriptor_set.c | 226 VkPipelineLayout* pPipelineLayout) in lvp_CreatePipelineLayout() 298 *pPipelineLayout = lvp_pipeline_layout_to_handle(layout); in lvp_CreatePipelineLayout() 222 lvp_CreatePipelineLayout( VkDevice _device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) lvp_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_descriptor_set.c | 421 VkPipelineLayout *pPipelineLayout) in tu_CreatePipelineLayout() 474 *pPipelineLayout = tu_pipeline_layout_to_handle(layout); in tu_CreatePipelineLayout() 418 tu_CreatePipelineLayout(VkDevice _device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) tu_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_descriptor_set.c | 328 VkPipelineLayout *pPipelineLayout) in v3dv_CreatePipelineLayout() 379 *pPipelineLayout = v3dv_pipeline_layout_to_handle(layout); in v3dv_CreatePipelineLayout() 325 v3dv_CreatePipelineLayout(VkDevice _device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) v3dv_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_descriptor_set.c | 546 VkPipelineLayout *pPipelineLayout) in radv_CreatePipelineLayout() 591 *pPipelineLayout = radv_pipeline_layout_to_handle(layout); in radv_CreatePipelineLayout() 544 radv_CreatePipelineLayout(VkDevice _device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) radv_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_descriptor_set.c | 841 VkPipelineLayout *pPipelineLayout) in pvr_CreatePipelineLayout() 980 *pPipelineLayout = pvr_pipeline_layout_to_handle(layout); in pvr_CreatePipelineLayout() 838 pvr_CreatePipelineLayout(VkDevice _device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) pvr_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_descriptor_set.c | 780 VkPipelineLayout* pPipelineLayout) in anv_CreatePipelineLayout() 817 *pPipelineLayout = anv_pipeline_layout_to_handle(layout); in anv_CreatePipelineLayout() 776 anv_CreatePipelineLayout( VkDevice _device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout) anv_CreatePipelineLayout() argument
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_descriptor_set.c | 761 VkPipelineLayout *pPipelineLayout) in dzn_CreatePipelineLayout() 764 pCreateInfo, pAllocator, pPipelineLayout); in dzn_CreatePipelineLayout() 758 dzn_CreatePipelineLayout(VkDevice device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) dzn_CreatePipelineLayout() argument
|
/third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
H A D | vksCacheBuilder.cpp | 48 typedef VKAPI_ATTR VkResult (VKAPI_CALL* CreatePipelineLayoutFunc) (VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout);
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | libVulkan.cpp | 2108 VKAPI_ATTR VkResult VKAPI_CALL vkCreatePipelineLayout(VkDevice device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) in vkCreatePipelineLayout() argument 2110 TRACE("(VkDevice device = %p, const VkPipelineLayoutCreateInfo* pCreateInfo = %p, const VkAllocationCallbacks* pAllocator = %p, VkPipelineLayout* pPipelineLayout = %p)", in vkCreatePipelineLayout() 2111 device, pCreateInfo, pAllocator, pPipelineLayout); in vkCreatePipelineLayout() 2134 return vk::PipelineLayout::Create(pAllocator, pCreateInfo, pPipelineLayout); in vkCreatePipelineLayout()
|
/third_party/vulkan-loader/loader/ |
H A D | trampoline.c | 1723 VkPipelineLayout *pPipelineLayout) { in vkCreatePipelineLayout() 1731 return disp->CreatePipelineLayout(device, pCreateInfo, pAllocator, pPipelineLayout); in vkCreatePipelineLayout() 1721 vkCreatePipelineLayout(VkDevice device, const VkPipelineLayoutCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkPipelineLayout *pPipelineLayout) vkCreatePipelineLayout() argument
|
/third_party/vk-gl-cts/external/vulkancts/scripts/src/ |
H A D | vulkan_sc_core.h | 2678 typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineLayout)(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout); 3066 VkPipelineLayout* pPipelineLayout);
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan.hpp | 1922 VkPipelineLayout * pPipelineLayout ) const VULKAN_HPP_NOEXCEPT 1924 return ::vkCreatePipelineLayout( device, pCreateInfo, pAllocator, pPipelineLayout );
|
H A D | vulkan_core.h | 3579 typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineLayout)(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout); 4024 VkPipelineLayout* pPipelineLayout);
|
/third_party/skia/include/third_party/vulkan/vulkan/ |
H A D | vulkan_core.h | 3486 typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineLayout)(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout); 3931 VkPipelineLayout* pPipelineLayout);
|
/third_party/mesa3d/include/vulkan/ |
H A D | vulkan_core.h | 3843 typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineLayout)(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout); 4288 VkPipelineLayout* pPipelineLayout);
|
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/ |
H A D | vulkan_core.h | 3628 typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineLayout)(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout); 4073 VkPipelineLayout* pPipelineLayout);
|