pub trait ExtFullScreenExclusiveExtension: DeviceV1_0 {
    const METADATA: Extension = EXT_FULL_SCREEN_EXCLUSIVE_EXTENSION;

    // Provided methods
    unsafe fn acquire_full_screen_exclusive_mode_ext(
        &self,
        swapchain: SwapchainKHR
    ) -> VkResult<()> { ... }
    unsafe fn get_device_group_surface_present_modes2_ext(
        &self,
        surface_info: &PhysicalDeviceSurfaceInfo2KHR
    ) -> VkResult<DeviceGroupPresentModeFlagsKHR> { ... }
    unsafe fn get_physical_device_surface_present_modes2_ext(
        &self,
        physical_device: PhysicalDevice,
        surface_info: &PhysicalDeviceSurfaceInfo2KHR
    ) -> VkResult<Vec<PresentModeKHR>> { ... }
    unsafe fn release_full_screen_exclusive_mode_ext(
        &self,
        swapchain: SwapchainKHR
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = EXT_FULL_SCREEN_EXCLUSIVE_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§