C Specification
When the presentAtAbsoluteTime or
presentAtRelativeTime feature is
enabled, an application can instruct the presentation engine to attempt to
display an image at a specified time, or for a minimum duration, by
including the VkPresentTimingsInfoEXT structure in the pNext
chain of the VkPresentInfoKHR structure.
The VkPresentTimingsInfoEXT structure is defined as:
// Provided by VK_EXT_present_timing
typedef struct VkPresentTimingsInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t swapchainCount;
const VkPresentTimingInfoEXT* pTimingInfos;
} VkPresentTimingsInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
swapchainCountis the number of swapchains being presented to by this command. -
pTimingInfosisNULLor a pointer to an array ofVkPresentTimingInfoEXTelements withswapchainCountentries. If notNULL, each element ofpTimingInfoscontains timing information for the presentation of the image corresponding to the entry in theVkPresentInfoKHR::pImageIndicesarray.
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.