VkDebugUtilsLabelEXT(3)
C Specification
TheVkDebugUtilsLabelEXT structure is defined as:
// Provided by VK_EXT_debug_utilstypedef struct VkDebugUtilsLabelEXT { VkStructureType sType; const void* pNext; const char* pLabelName; float color[4];} VkDebugUtilsLabelEXT;Members
sTypeis aVkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending thisstructure.pLabelNameis a pointer to a null-terminated UTF-8 stringcontaining the name of the label.coloris an optional RGBA color value that can be associated withthe label.A particular implementationmay choose to ignore this color value.The values contain RGBA values in order, in the range 0.0 to 1.0.If all elements incolorare 0.0, then it is ignored.
Description
VUID-VkDebugUtilsLabelEXT-sType-sType
sTypemust beVK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXTVUID-VkDebugUtilsLabelEXT-pLabelName-parameter
pLabelNamemust be a null-terminated UTF-8 string
Document Notes
For more information, see theVulkan Specification.
This page is extracted from the Vulkan Specification.Fixes and changes should be made to the Specification, not directly.