Enum gfx::shade::ProgramError [] [src]

pub enum ProgramError {
    Vertex(CreateShaderError),
    Hull(CreateShaderError),
    Domain(CreateShaderError),
    Pixel(CreateShaderError),
    Link(CreateProgramError),
}

Program linking error

Variants

Unable to compile the vertex shader

Unable to compile the pixel shader

Unable to compile the pixel shader

Unable to compile the pixel shader

Unable to link

Trait Implementations

impl Clone for ProgramError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ProgramError
[src]

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

This method tests for !=.

impl Debug for ProgramError
[src]

Formats the value using the given formatter.

impl Display for ProgramError
[src]

Formats the value using the given formatter.

impl Error for ProgramError
[src]

A short description of the error. Read more

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