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

pub enum ProgramError {
    Vertex(CreateShaderError),
    Fragment(CreateShaderError),
    Link(CreateProgramError),
}

Program linking error

Variants

Vertex

Unable to compile the vertex shader

Fragment

Unable to compile the fragment shader

Unable to link

Trait Implementations

Derived Implementations

impl Debug for ProgramError

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl PartialEq for ProgramError

fn eq(&self, __arg_0: &ProgramError) -> bool

fn ne(&self, __arg_0: &ProgramError) -> bool

impl Clone for ProgramError

fn clone(&self) -> ProgramError

fn clone_from(&mut self, source: &Self)