pub trait ExtDebugMarkerExtension: DeviceV1_0 {
    const METADATA: Extension = EXT_DEBUG_MARKER_EXTENSION;

    // Provided methods
    unsafe fn cmd_debug_marker_begin_ext(
        &self,
        command_buffer: CommandBuffer,
        marker_info: &DebugMarkerMarkerInfoEXT
    ) { ... }
    unsafe fn cmd_debug_marker_end_ext(&self, command_buffer: CommandBuffer) { ... }
    unsafe fn cmd_debug_marker_insert_ext(
        &self,
        command_buffer: CommandBuffer,
        marker_info: &DebugMarkerMarkerInfoEXT
    ) { ... }
    unsafe fn debug_marker_set_object_name_ext(
        &self,
        name_info: &DebugMarkerObjectNameInfoEXT
    ) -> VkResult<()> { ... }
    unsafe fn debug_marker_set_object_tag_ext(
        &self,
        tag_info: &DebugMarkerObjectTagInfoEXT
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = EXT_DEBUG_MARKER_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§