C Specification

The VkSetLatencyMarkerInfoNV structure is defined as:

// Provided by VK_NV_low_latency2
typedef struct VkSetLatencyMarkerInfoNV {
    VkStructureType      sType;
    const void*          pNext;
    uint64_t             presentID;
    VkLatencyMarkerNV    marker;
} VkSetLatencyMarkerInfoNV;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • presentId is an application provided value that is used to associate the timestamp with a vkQueuePresentKHR command using VkPresentIdKHR::pPresentIds for a given present.

  • marker is the type of timestamp to be recorded.

Description

Valid Usage (Implicit)
  • VUID-VkSetLatencyMarkerInfoNV-sType-sType
    sType must be VK_STRUCTURE_TYPE_SET_LATENCY_MARKER_INFO_NV

  • VUID-VkSetLatencyMarkerInfoNV-marker-parameter
    marker must be a valid VkLatencyMarkerNV value

See Also

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.

Copyright 2014-2024 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0