Function Prototype
vkCreateDebugUtilsMessengerEXT
Create a debug messenger object
A debug messenger triggers a debug callback with a debug message when an event of interest occurs. To create a debug messenger which will trigger a debug callback, call:
VkResult vkCreateDebugUtilsMessengerEXT(
VkInstance instance,
const VkDebugUtilsMessengerCreateInfoEXT* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkDebugUtilsMessengerEXT* pMessenger);
instanceis the instance the messenger will be used with.pCreateInfois a pointer to a VkDebugUtilsMessengerCreateInfoEXT structure containing the callback pointer, as well as defining conditions under which this messenger will trigger the callback.pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.pMessengeris a pointer to a VkDebugUtilsMessengerEXT handle in which the created object is returned.
Valid Usage (Implicit)
VUID-vkCreateDebugUtilsMessengerEXT-instance-parameter
instance must be a valid VkInstance handle
VUID-vkCreateDebugUtilsMessengerEXT-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkDebugUtilsMessengerCreateInfoEXT structure
VUID-vkCreateDebugUtilsMessengerEXT-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateDebugUtilsMessengerEXT-pMessenger-parameter
pMessenger must be a valid pointer to a VkDebugUtilsMessengerEXT handle
The application must ensure that vkCreateDebugUtilsMessengerEXT is
not executed in parallel with any Vulkan command that is also called with
instance or child of instance as the dispatchable argument.