Trait vulkanalia::vk::ExtDebugReportExtension[][src]

pub trait ExtDebugReportExtension: InstanceV1_0 {
    const METADATA: Extension;
    unsafe fn create_debug_report_callback_ext(
        &self,
        create_info: &DebugReportCallbackCreateInfoEXT,
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<DebugReportCallbackEXT> { ... }
unsafe fn debug_report_message_ext(
        &self,
        flags: DebugReportFlagsEXT,
        object_type: DebugReportObjectTypeEXT,
        object: u64,
        location: usize,
        message_code: i32,
        layer_prefix: &[u8],
        message: &[u8]
    ) { ... }
unsafe fn destroy_debug_report_callback_ext(
        &self,
        callback: DebugReportCallbackEXT,
        allocator: Option<&AllocationCallbacks>
    ) { ... } }
👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

Associated Constants

const METADATA: Extension[src]

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

The metadata for this extension.

Loading content...

Provided methods

unsafe fn create_debug_report_callback_ext(
    &self,
    create_info: &DebugReportCallbackCreateInfoEXT,
    allocator: Option<&AllocationCallbacks>
) -> VkResult<DebugReportCallbackEXT>
[src]

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

unsafe fn debug_report_message_ext(
    &self,
    flags: DebugReportFlagsEXT,
    object_type: DebugReportObjectTypeEXT,
    object: u64,
    location: usize,
    message_code: i32,
    layer_prefix: &[u8],
    message: &[u8]
)
[src]

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

unsafe fn destroy_debug_report_callback_ext(
    &self,
    callback: DebugReportCallbackEXT,
    allocator: Option<&AllocationCallbacks>
)
[src]

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

Loading content...

Implementors

Loading content...