[][src]Enum vulkano::swapchain::SwapchainCreationError

pub enum SwapchainCreationError {
    OomError(OomError),
    DeviceLost,
    SurfaceLost,
    SurfaceInUse,
    NativeWindowInUse,
    MissingExtensionKHRSwapchain,
    MissingExtensionExtFullScreenExclusive,
    OldSwapchainSurfaceMismatch,
    OldSwapchainAlreadyUsed,
    UnsupportedMinImagesCount,
    UnsupportedMaxImagesCount,
    UnsupportedFormat,
    UnsupportedDimensions,
    UnsupportedArrayLayers,
    UnsupportedUsageFlags,
    UnsupportedSurfaceTransform,
    UnsupportedCompositeAlpha,
    UnsupportedPresentMode,
    UnsupportedImageConfiguration,
}

Error that can happen when creation a swapchain.

Variants

OomError(OomError)

Not enough memory.

DeviceLost

The device was lost.

SurfaceLost

The surface was lost.

SurfaceInUse

The surface is already used by another swapchain.

NativeWindowInUse

The window is already in use by another API.

MissingExtensionKHRSwapchain

The VK_KHR_swapchain extension was not enabled.

MissingExtensionExtFullScreenExclusive

The VK_EXT_full_screen_exclusive extension was not enabled.

OldSwapchainSurfaceMismatch

Surface mismatch between old and new swapchain.

OldSwapchainAlreadyUsed

The old swapchain has already been used to recreate another one.

UnsupportedMinImagesCount

The requested number of swapchain images is not supported by the surface.

UnsupportedMaxImagesCount

The requested number of swapchain images is not supported by the surface.

UnsupportedFormat

The requested image format is not supported by the surface.

UnsupportedDimensions

The requested dimensions are not supported by the surface.

UnsupportedArrayLayers

The requested array layers count is not supported by the surface.

UnsupportedUsageFlags

The requested image usage is not supported by the surface.

UnsupportedSurfaceTransform

The requested surface transform is not supported by the surface.

UnsupportedCompositeAlpha

The requested composite alpha is not supported by the surface.

UnsupportedPresentMode

The requested present mode is not supported by the surface.

UnsupportedImageConfiguration

The image configuration is not supported by the physical device.

Trait Implementations

impl Clone for SwapchainCreationError[src]

impl Debug for SwapchainCreationError[src]

impl Display for SwapchainCreationError[src]

impl Eq for SwapchainCreationError[src]

impl Error for SwapchainCreationError[src]

impl From<CapabilitiesError> for SwapchainCreationError[src]

impl From<OomError> for SwapchainCreationError[src]

impl PartialEq<SwapchainCreationError> for SwapchainCreationError[src]

impl StructuralEq for SwapchainCreationError[src]

impl StructuralPartialEq for SwapchainCreationError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Content for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.