C Specification
The VkAntiLagPresentationInfoAMD
structure is defined as:
// Provided by VK_AMD_anti_lag
typedef struct VkAntiLagPresentationInfoAMD {
VkStructureType sType;
void* pNext;
VkAntiLagStageAMD stage;
uint64_t frameIndex;
} VkAntiLagPresentationInfoAMD;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
stage
is a VkAntiLagStageAMD value specifying the current application stage. -
frameIndex
is set just before the application processes input data (VK_ANTI_LAG_STAGE_INPUT_AMD
). The sameframeIndex
value should be set before the frame with current input data will be presented by vkQueuePresentKHR (VK_ANTI_LAG_STAGE_PRESENT_AMD
). This should be done for each frame.
Description
This structure specifies information about the presentation stage for which anti-lag parameters are being set.
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.