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

pub enum CheckDispatchError {
    UnsupportedDimensions {
        requested: [u32; 3],
        max_supported: [u32; 3],
    },
}

Error that can happen when checking dispatch command validity.

Variants

The dimensions are too large for the device's limits.

Fields of UnsupportedDimensions

The requested dimensions.

The actual supported dimensions.

Trait Implementations

impl Debug for CheckDispatchError
[src]

Formats the value using the given formatter.

impl Copy for CheckDispatchError
[src]

impl Clone for CheckDispatchError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for CheckDispatchError
[src]

A short description of the error. Read more

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

impl Display for CheckDispatchError
[src]

Formats the value using the given formatter. Read more