Function Prototype
vkQueueInsertDebugUtilsLabelEXT
Insert a label into a queue
A single label can be inserted into a queue by calling:
void vkQueueInsertDebugUtilsLabelEXT(
VkQueue queue,
const VkDebugUtilsLabelEXT* pLabelInfo);
pub fn queue_insert_debug_utils_label_ext(
queue: vk::Queue,
p_label_info: *const vk::DebugUtilsLabelEXT,
);
queueis the queue into which a debug label will be inserted.pLabelInfois a pointer to a VkDebugUtilsLabelEXT structure specifying parameters of the label to insert.
Valid Usage (Implicit)
VUID-vkQueueInsertDebugUtilsLabelEXT-queue-parameter
queue must be a valid VkQueue handle
VUID-vkQueueInsertDebugUtilsLabelEXT-pLabelInfo-parameter
pLabelInfo must be a valid pointer to a valid VkDebugUtilsLabelEXT structure
Host Synchronization
- Host access to
queuemust be externally synchronized if it was not created withVK_DEVICE_QUEUE_CREATE_INTERNALLY_SYNCHRONIZED_BIT_KHR
Parent
VK_EXT_debug_utilsType
Function Prototype