Class VkDebugMarkerObjectNameInfoEXT

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkDebugMarkerObjectNameInfoEXT extends Struct<VkDebugMarkerObjectNameInfoEXT> implements NativeResource
Specify parameters of a name to give to an object.
Description

Applications may change the name associated with an object simply by calling vkDebugMarkerSetObjectNameEXT again with a new string. To remove a previously set name, pObjectName should be set to an empty string.

Valid Usage
Valid Usage (Implicit)
See Also

DebugMarkerSetObjectNameEXT

Layout


 struct VkDebugMarkerObjectNameInfoEXT {
     VkStructureType sType();
     void const * pNext();
     VkDebugReportObjectTypeEXT objectType();
     uint64_t object();
     char const * pObjectName();
 }