C Specification
To create pipeline binary objects, call:
// Provided by VK_KHR_pipeline_binary
VkResult vkCreatePipelineBinariesKHR(
    VkDevice                                    device,
    const VkPipelineBinaryCreateInfoKHR*        pCreateInfo,
    const VkAllocationCallbacks*                pAllocator,
    VkPipelineBinaryHandlesInfoKHR*             pBinaries);Parameters
- 
deviceis the logical device that creates the pipeline binary objects.
- 
pCreateInfois a pointer to a VkPipelineBinaryCreateInfoKHR structure that contains the data to create the pipeline binaries from.
- 
pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.
- 
pBinariesis a pointer to a VkPipelineBinaryHandlesInfoKHR structure in which the resulting pipeline binaries are returned.
Description
The implementation will attempt to create all pipeline binaries. If creation fails for any pipeline binary, then:
- 
The corresponding entry in the pPipelineBinariesoutput array will be filled with VK_NULL_HANDLE.
- 
The VkResultreturned by vkCreatePipelineBinariesKHR will contain the error value for the first entry in the output array inpBinariescontaining VK_NULL_HANDLE.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.