Enum luminance::shader::program::ProgramError [] [src]

pub enum ProgramError {
    LinkFailed(String),
    UniformWarning(UniformWarning),
}

Errors that a Program can generate.

Variants

Program link failed. You can inspect the reason by looking at the contained String.

Some uniform configuration is ill-formed. It can be a problem of inactive uniform, mismatch type, etc. Check the UniformWarning type for more information.

Trait Implementations

impl Clone for ProgramError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProgramError
[src]

Formats the value using the given formatter.