Function Prototype
vkDebugMarkerSetObjectNameEXT
Give an application-defined name to an object
An object can be given an application-defined name by calling:
VkResult vkDebugMarkerSetObjectNameEXT(
VkDevice device,
const VkDebugMarkerObjectNameInfoEXT* pNameInfo);
pub fn debug_marker_set_object_name_ext(
device: vk::Device,
p_name_info: *const vk::DebugMarkerObjectNameInfoEXT,
) -> vk::Result;
deviceis the device that created the object.pNameInfois a pointer to a VkDebugMarkerObjectNameInfoEXT structure specifying the parameters of the name to set on the object.
Valid Usage (Implicit)
VUID-vkDebugMarkerSetObjectNameEXT-device-parameter
device must be a valid VkDevice handle
VUID-vkDebugMarkerSetObjectNameEXT-pNameInfo-parameter
pNameInfo must be a valid pointer to a valid VkDebugMarkerObjectNameInfoEXT structure
Parent
VK_EXT_debug_markerType
Function Prototype