C Specification
The VkPipelineBinaryKeysAndDataKHR
structure is defined as:
// Provided by VK_KHR_pipeline_binary
typedef struct VkPipelineBinaryKeysAndDataKHR {
uint32_t binaryCount;
const VkPipelineBinaryKeyKHR* pPipelineBinaryKeys;
const VkPipelineBinaryDataKHR* pPipelineBinaryData;
} VkPipelineBinaryKeysAndDataKHR;
Members
-
binaryCount
is the size of thepPipelineBinaryKeys
andpPipelineBinaryData
arrays -
pPipelineBinaryKeys
is a pointer to an array of VkPipelineBinaryKeyKHR structures containing the pipeline binary keys -
pPipelineBinaryData
is a pointer to an array of VkPipelineBinaryDataKHR structures containing the pipeline binary data
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.