pub trait ExtAcquireDrmDisplayExtension: InstanceV1_0 {
    const METADATA: Extension = EXT_ACQUIRE_DRM_DISPLAY_EXTENSION;

    // Provided methods
    unsafe fn acquire_drm_display_ext(
        &self,
        physical_device: PhysicalDevice,
        drm_fd: i32,
        display: DisplayKHR
    ) -> VkResult<()> { ... }
    unsafe fn get_drm_display_ext(
        &self,
        physical_device: PhysicalDevice,
        drm_fd: i32,
        connector_id: u32
    ) -> VkResult<DisplayKHR> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = EXT_ACQUIRE_DRM_DISPLAY_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§