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