VkPresentStageTimeEXT(3)

Name

VkPresentStageTimeEXT - Associate a present stage with a timestamp

C Specification

The VkPresentStageTimeEXT structure is defined as:

// Provided by VK_EXT_present_timing
typedef struct VkPresentStageTimeEXT {
    VkPresentStageFlagsEXT    stage;
    uint64_t                  time;
} VkPresentStageTimeEXT;

Members

  • stage is a VkPresentStageFlagsEXT value specifying a present stage.

  • time is a time in nanoseconds associated with the stage.

Description

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.