Class VkDebugMarkerMarkerInfoEXT

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class VkDebugMarkerMarkerInfoEXT
    extends Struct
    Passed to CmdDebugMarkerBeginEXT and CmdDebugMarkerInsertEXT.

    Member documentation

    • sType – the type of this structure. Must be: STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT
    • pNext – reserved for use by extensions
    • pMarkerName – a pointer to a null-terminated UTF-8 string that contains the name of the marker
    • color – an optional RGBA color value that can be associated with the marker. A particular implementation may choose to ignore this color value. The values contain RGBA values in order, in the range 0.0 to 1.0. If all elements in color are set to 0.0 then it is ignored.

    Layout

    struct VkDebugMarkerMarkerInfoEXT {
        VkStructureType sType;
        const void * pNext;
        const char * pMarkerName;
        float[4] color;
    }