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

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

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.

MissingExtension

The VK_KHR_swapchain 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.

Trait Implementations

impl From<OomError> for SwapchainCreationError[src]

impl From<CapabilitiesError> for SwapchainCreationError[src]

impl Clone for SwapchainCreationError[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<SwapchainCreationError> for SwapchainCreationError[src]

impl Eq for SwapchainCreationError[src]

impl Debug for SwapchainCreationError[src]

impl Display for SwapchainCreationError[src]

impl Error for SwapchainCreationError[src]

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

The lower-level source of this error, if any. Read more

Auto Trait Implementations

Blanket Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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