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]

[src]

Formats the value using the given formatter. Read more

impl Copy for CheckDispatchError
[src]

impl Clone for CheckDispatchError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Error for CheckDispatchError
[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 CheckDispatchError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<CheckDispatchError> for DispatchError
[src]

[src]

Performs the conversion.

Auto Trait Implementations