Function Prototype
vkQueueBeginDebugUtilsLabelEXT
Open a queue debug label region
A queue debug label region is opened by calling:
void vkQueueBeginDebugUtilsLabelEXT(
VkQueue queue,
const VkDebugUtilsLabelEXT* pLabelInfo);
pub fn queue_begin_debug_utils_label_ext(
queue: vk::Queue,
p_label_info: *const vk::DebugUtilsLabelEXT,
);
queueis the queue in which to start a debug label region.pLabelInfois a pointer to a VkDebugUtilsLabelEXT structure specifying parameters of the label region to open.
Valid Usage (Implicit)
VUID-vkQueueBeginDebugUtilsLabelEXT-queue-parameter
queue must be a valid VkQueue handle
VUID-vkQueueBeginDebugUtilsLabelEXT-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