C Specification
VkMemoryMarkerInfoAMD is defined as:
// Provided by VK_KHR_device_address_commands with VK_AMD_buffer_marker
typedef struct VkMemoryMarkerInfoAMD {
VkStructureType sType;
const void* pNext;
VkPipelineStageFlags2KHR stage;
VkDeviceAddressRangeKHR dstRange;
VkAddressCommandFlagsKHR dstFlags;
uint32_t marker;
} VkMemoryMarkerInfoAMD;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
stagespecifies the pipeline stage whose completion triggers the marker write. -
dstRangeis the VkDeviceAddressRangeKHR where the marker will be written. -
dstFlagsis a VkAddressCommandFlagsKHR value defining the copy flags for the destination address range. -
markeris the 32-bit value of the marker.
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.