pub trait KhrXlibSurfaceExtension: InstanceV1_0 {
    const METADATA: Extension = KHR_XLIB_SURFACE_EXTENSION;

    // Provided methods
    unsafe fn create_xlib_surface_khr(
        &self,
        create_info: &XlibSurfaceCreateInfoKHR,
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<SurfaceKHR> { ... }
    unsafe fn get_physical_device_xlib_presentation_support_khr(
        &self,
        physical_device: PhysicalDevice,
        queue_family_index: u32,
        visual_id: VisualID
    ) -> (Bool32, Display) { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_XLIB_SURFACE_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§