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

Expand description

Associated Constants

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

The metadata for this extension.

Provided methods

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

👎 Deprecated:

deprecated in favor of VK_EXT_debug_utils

Implementors