pub trait KhrDisplaySwapchainExtension: DeviceV1_0 {
    const METADATA: Extension = KHR_DISPLAY_SWAPCHAIN_EXTENSION;

    // Provided method
    unsafe fn create_shared_swapchains_khr(
        &self,
        create_infos: &[impl Cast<Target = SwapchainCreateInfoKHR>],
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<Vec<SwapchainKHR>> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_DISPLAY_SWAPCHAIN_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§