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

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

Program linking error

Variants

Unable to compile the vertex shader

Unable to compile the hull shader

Unable to compile the domain shader

Unable to compile the geometry shader

Unable to compile the pixel shader

Unable to link

Trait Implementations

impl Clone for ProgramError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ProgramError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ProgramError
[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 Display for ProgramError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ProgramError
[src]

[src]

A short description of the error. Read more

[src]

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