Structures
VkReleaseSwapchainImagesInfoEXT
Structure describing a list of swapchain image indices to be released
The VkReleaseSwapchainImagesInfoEXT structure is defined as:
typedef struct VkReleaseSwapchainImagesInfoEXT {
VkStructureType sType;
const void* pNext;
VkSwapchainKHR swapchain;
uint32_t imageIndexCount;
const uint32_t* pImageIndices;
} VkReleaseSwapchainImagesInfoEXT;
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.
Valid Usage
VUID-VkReleaseSwapchainImagesInfoEXT-pImageIndices-07785
Each element of pImageIndices must be the index of a presentable
image acquired from the swapchain specified by swapchain
VUID-VkReleaseSwapchainImagesInfoEXT-pImageIndices-07786
All uses of presentable images identified by elements of
pImageIndices must have completed execution
Valid Usage (Implicit)
VUID-VkReleaseSwapchainImagesInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_RELEASE_SWAPCHAIN_IMAGES_INFO_EXT
VUID-VkReleaseSwapchainImagesInfoEXT-pNext-pNext
pNext must be NULL
VUID-VkReleaseSwapchainImagesInfoEXT-swapchain-parameter
swapchain must be a valid VkSwapchainKHR handle
VUID-VkReleaseSwapchainImagesInfoEXT-pImageIndices-parameter
pImageIndices must be a valid pointer to an array of imageIndexCount uint32_t values
VUID-VkReleaseSwapchainImagesInfoEXT-imageIndexCount-arraylength
imageIndexCount must be greater than 0
Host Synchronization
- Host access to
swapchainmust be externally synchronized ::