C Specification
The VkPipelineBinaryDataKHR
structure is defined as:
// Provided by VK_KHR_pipeline_binary
typedef struct VkPipelineBinaryDataKHR {
size_t dataSize;
void* pData;
} VkPipelineBinaryDataKHR;
Members
-
dataSize
is the size of thepData
buffer in bytes. -
pData
is a pointer to a buffer ofsize
bytes that contains pipeline binary data obtained fromvkGetPipelineBinaryDataKHR
.
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.