Structures
VkPresentWait2InfoKHR
Structure describing parameters of a presentation wait
The VkPresentWait2InfoKHR structure is defined as:
typedef struct VkPresentWait2InfoKHR {
VkStructureType sType;
const void* pNext;
uint64_t presentId;
uint64_t timeout;
} VkPresentWait2InfoKHR;
pub struct PresentWait2InfoKHR {
s_type: vk::StructureType,
p_next: *const c_void,
present_id: u64,
timeout: u64,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.presentIdis the presentation presentId to wait for.timeoutis the timeout period in units of nanoseconds.timeoutis adjusted to the closest value allowed by the implementation-dependent timeout accuracy, which may be substantially longer than one nanosecond, and may be longer than the requested period.
Valid Usage (Implicit)
VUID-VkPresentWait2InfoKHR-sType-sType
sType must be VK_STRUCTURE_TYPE_PRESENT_WAIT_2_INFO_KHR
VUID-VkPresentWait2InfoKHR-pNext-pNext
pNext must be NULL
Parent
VK_KHR_present_wait2Type
Structures