Enum vulkano::command_buffer::validity::CheckBlitImageError [] [src]

pub enum CheckBlitImageError {
    MissingTransferSourceUsage,
    MissingTransferDestinationUsage,
    SourceFormatNotSupported,
    DestinationFormatNotSupported,
    DepthStencilNearestMandatory,
    DepthStencilFormatMismatch,
    IncompatibleFormatsTypes {
        source_format_ty: FormatTy,
        destination_format_ty: FormatTy,
    },
    UnexpectedMultisampled,
    SourceCoordinatesOutOfRange,
    DestinationCoordinatesOutOfRange,
    IncompatibleRangeForImageType,
}

Error that can happen from check_clear_color_image.

Variants

The source is missing the transfer source usage.

The destination is missing the transfer destination usage.

The format of the source image doesn't support blit operations.

The format of the destination image doesn't support blit operations.

You must use the nearest filter when blitting depth/stencil images.

The format of the source and destination must be equal when blitting depth/stencil images.

The types of the source format and the destination format aren't compatible.

Fields of IncompatibleFormatsTypes

Blitting between multisampled images is forbidden.

The offsets, array layers and/or mipmap levels are out of range in the source image.

The offsets, array layers and/or mipmap levels are out of range in the destination image.

The top-left and/or bottom-right coordinates are incompatible with the image type.

Trait Implementations

impl Debug for CheckBlitImageError
[src]

[src]

Formats the value using the given formatter.

impl Copy for CheckBlitImageError
[src]

impl Clone for CheckBlitImageError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Error for CheckBlitImageError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for CheckBlitImageError
[src]

[src]

Formats the value using the given formatter. Read more