Function Prototype
vkQueueEndDebugUtilsLabelEXT
Close a queue debug label region
A queue debug label region is closed by calling:
void vkQueueEndDebugUtilsLabelEXT(
VkQueue queue);
pub fn queue_end_debug_utils_label_ext(
queue: vk::Queue,
);
queueis the queue in which a debug label region should be closed.
The calls to vkQueueBeginDebugUtilsLabelEXT and vkQueueEndDebugUtilsLabelEXT must be matched and balanced.
Valid Usage
VUID-vkQueueEndDebugUtilsLabelEXT-None-01911
There must be an outstanding vkQueueBeginDebugUtilsLabelEXT
command prior to the vkQueueEndDebugUtilsLabelEXT on the queue
Valid Usage (Implicit)
VUID-vkQueueEndDebugUtilsLabelEXT-queue-parameter
queue must be a valid VkQueue handle
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