Enum luminance::shader::stage::StageError[][src]

pub enum StageError {
    CompilationFailed(TypeString),
    UnsupportedType(Type),
}

Errors that shader stages can emit.

Variants

Occurs when a shader fails to compile.

Occurs when you try to create a shader which type is not supported on the current hardware.

Trait Implementations

impl Clone for StageError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StageError
[src]

Formats the value using the given formatter. Read more

impl Display for StageError
[src]

Formats the value using the given formatter. Read more

impl Error for StageError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations

impl Send for StageError

impl Sync for StageError