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

pub enum CheckIndexBufferError {
    BufferMissingUsage,
    WrongAlignment,
    UnsupportIndexType,
}

Error that can happen when checking whether binding an index buffer is valid.

Variants

The "index buffer" usage must be enabled on the index buffer.

The data or size must be 4-bytes aligned.

The type of the indices is not supported by the device.

Trait Implementations

impl Debug for CheckIndexBufferError
[src]

Formats the value using the given formatter.

impl Copy for CheckIndexBufferError
[src]

impl Clone for CheckIndexBufferError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for CheckIndexBufferError
[src]

A short description of the error. Read more

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

impl Display for CheckIndexBufferError
[src]

Formats the value using the given formatter. Read more