Enum vulkano::pipeline::ComputePipelineCreationError [] [src]

pub enum ComputePipelineCreationError {
    OomError(OomError),
    PipelineLayoutCreationError(PipelineLayoutCreationError),
    IncompatiblePipelineLayout(PipelineLayoutNotSupersetError),
}

Error that can happen when creating a compute pipeline.

Variants

Not enough memory.

Error while creating the pipeline layout object.

The pipeline layout is not compatible with what the shader expects.

Trait Implementations

impl Clone for ComputePipelineCreationError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ComputePipelineCreationError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ComputePipelineCreationError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for ComputePipelineCreationError
[src]

impl Error for ComputePipelineCreationError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for ComputePipelineCreationError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<OomError> for ComputePipelineCreationError
[src]

[src]

Performs the conversion.

impl From<PipelineLayoutCreationError> for ComputePipelineCreationError
[src]

impl From<PipelineLayoutNotSupersetError> for ComputePipelineCreationError
[src]

impl From<Error> for ComputePipelineCreationError
[src]

[src]

Performs the conversion.