Structures
VkLatencySubmissionPresentIdNV
Structure used to associate a queueSubmit with a presentId
The VkLatencySubmissionPresentIdNV structure is defined as:
typedef struct VkLatencySubmissionPresentIdNV {
    VkStructureType sType;
    const void* pNext;
    uint64_t presentID;
} VkLatencySubmissionPresentIdNV;
- sTypeis a VkStructureType value identifying this structure.
- pNextis- NULLor a pointer to a structure extending this structure.
- presentIDis used to associate the- vkQueueSubmitwith the presentId used for a given- vkQueuePresentKHRvia VkPresentIdKHR::- pPresentIds.
For any submission to be tracked with low latency mode pacing, it needs to
be associated with other submissions in a given present.
To associate a submission with presentID for low latency mode, the
pNext chain of vkQueueSubmit must include a
VkLatencySubmissionPresentIdNV structure.
Valid Usage (Implicit)
VUID-VkLatencySubmissionPresentIdNV-sType-sType
sType must be VK_STRUCTURE_TYPE_LATENCY_SUBMISSION_PRESENT_ID_NV