C Specification
The VkReleaseSwapchainImagesInfoKHR structure is defined as:
// Provided by VK_KHR_swapchain_maintenance1
typedef struct VkReleaseSwapchainImagesInfoKHR {
VkStructureType sType;
const void* pNext;
VkSwapchainKHR swapchain;
uint32_t imageIndexCount;
const uint32_t* pImageIndices;
} VkReleaseSwapchainImagesInfoKHR;
or the equivalent
// Provided by VK_EXT_swapchain_maintenance1
typedef VkReleaseSwapchainImagesInfoKHR VkReleaseSwapchainImagesInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
swapchainis a swapchain to which images are being released. -
imageIndexCountis the number of image indices to be released. -
pImageIndicesis a pointer to an array of indices into the array ofswapchain’s presentable images, withimageIndexCountentries.
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.