VkCalibratedTimestampInfoKHR(3)

Name

VkCalibratedTimestampInfoKHR - Structure specifying the input parameters of a calibrated timestamp query

C Specification

The VkCalibratedTimestampInfoKHR structure is defined as:

// Provided by VK_KHR_calibrated_timestamps
typedef struct VkCalibratedTimestampInfoKHR {
    VkStructureType    sType;
    const void*        pNext;
    VkTimeDomainKHR    timeDomain;
} VkCalibratedTimestampInfoKHR;
// Provided by VK_EXT_calibrated_timestamps
// Equivalent to VkCalibratedTimestampInfoKHR
typedef VkCalibratedTimestampInfoKHR VkCalibratedTimestampInfoEXT;

Members

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • timeDomain is a VkTimeDomainKHR value specifying the time domain from which the calibrated timestamp value should be returned.

Description

Valid Usage
Valid Usage (Implicit)

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.