C Specification
The VkPipelineBinaryInfoKHR
structure is defined as:
// Provided by VK_KHR_pipeline_binary
typedef struct VkPipelineBinaryInfoKHR {
VkStructureType sType;
const void* pNext;
uint32_t binaryCount;
const VkPipelineBinaryKHR* pPipelineBinaries;
} VkPipelineBinaryInfoKHR;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
binaryCount
is the number of elements in thepPipelineBinaries
array. -
pPipelineBinaries
is a pointer to an array of VkPipelineBinaryKHR handles.
Description
If a VkPipelineBinaryInfoKHR
structure with a binaryCount
greater than 0 is included in the pNext
chain of any
Vk*PipelineCreateInfo
structure when creating a pipeline,
implementations must use the data in pPipelineBinaries
instead of
recalculating it.
Any shader module identifiers or shader modules declared in
VkPipelineShaderStageCreateInfo instances are ignored.
If this structure is not included in the pNext
chain, it is equivalent
to specifying this structure with a binaryCount
of 0
.
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.