pub trait KhrWaylandSurfaceExtension: InstanceV1_0 {
    const METADATA: Extension = KHR_WAYLAND_SURFACE_EXTENSION;

    // Provided methods
    unsafe fn create_wayland_surface_khr(
        &self,
        create_info: &WaylandSurfaceCreateInfoKHR,
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<SurfaceKHR> { ... }
    unsafe fn get_physical_device_wayland_presentation_support_khr(
        &self,
        physical_device: PhysicalDevice,
        queue_family_index: u32,
        display: *mut wl_display
    ) -> Bool32 { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_WAYLAND_SURFACE_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§