MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Tools / CreateComputePipelines

Function CreateComputePipelines

icd/generated/function_definitions.h:731–740  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

729 return VK_SUCCESS;
730}
731static VKAPI_ATTR VkResult VKAPI_CALL CreateComputePipelines(VkDevice device, VkPipelineCache pipelineCache,
732 uint32_t createInfoCount,
733 const VkComputePipelineCreateInfo* pCreateInfos,
734 const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines) {
735 unique_lock_t lock(global_lock);
736 for (uint32_t i = 0; i < createInfoCount; ++i) {
737 pPipelines[i] = (VkPipeline)global_unique_handle++;
738 }
739 return VK_SUCCESS;
740}
741static VKAPI_ATTR void VKAPI_CALL DestroyPipeline(VkDevice device, VkPipeline pipeline, const VkAllocationCallbacks* pAllocator) {
742 // Destroy object
743}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected