Enum vulkano::command_buffer::commands_raw::CmdCopyBufferToImageError [] [src]

pub enum CmdCopyBufferToImageError {
    SourceMissingTransferUsage,
    DestinationMissingTransferUsage,
    DestinationMultisampled,
    OutOfImageRange,
    OverlappingRanges,
}

Error that can happen when creating a CmdCopyBufferToImage.

Variants

The source buffer is missing the transfer source usage.

The destination image is missing the transfer destination usage.

The destination image has more than one sample per pixel.

The dimensions are out of range of the image.

The source and destination are overlapping in memory.

Trait Implementations

impl Debug for CmdCopyBufferToImageError
[src]

Formats the value using the given formatter.

impl Copy for CmdCopyBufferToImageError
[src]

impl Clone for CmdCopyBufferToImageError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for CmdCopyBufferToImageError
[src]

A short description of the error. Read more

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

impl Display for CmdCopyBufferToImageError
[src]

Formats the value using the given formatter. Read more