C Specification
To get the opaque capture descriptor data for images, call:
// Provided by VK_EXT_descriptor_heap
VkResult vkGetImageOpaqueCaptureDataEXT(
VkDevice device,
uint32_t imageCount,
const VkImage* pImages,
VkHostAddressRangeEXT* pDatas);
Parameters
-
deviceis the logical device that gets the data. -
imageCountis the number of images to retrieve data from. -
pImagesis a pointer to an array of VkImage objects to retrieve the opaque capture data from. -
pDatasis a pointer to an array of VkHostAddressRangeEXT structures defining the host address ranges where each image’s opaque capture data will be written.
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.