C Specification
The VkLatencySubmissionPresentIdNV structure is defined as:
// Provided by VK_NV_low_latency2
typedef struct VkLatencySubmissionPresentIdNV {
    VkStructureType    sType;
    const void*        pNext;
    uint64_t           presentID;
} VkLatencySubmissionPresentIdNV;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
presentIDis used to associate thevkQueueSubmitwith the presentId used for a givenvkQueuePresentKHRvia VkPresentIdKHR::pPresentIdsor VkPresentId2KHR::pPresentIds.
Description
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.
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.