Enum cuivre::graphics::DrawingError[][src]

pub enum DrawingError {
    SdlError(String),
    GlError(String),
    MeshEBONotInitialized,
    MeshVAONotInitialized,
    ShaderError(ShaderError),
    WindowBuildError(WindowBuildError),
}

Error related to OpenGL drawing.

Variants

Error related to SDL.

Error related to OpenGL.

Tried drawing a mesh that had no EBO set.

Tried drawing a mesh that had no VAO set.

Error related to OpenGL shaders.

Error related to window building.

Trait Implementations

impl Debug for DrawingError
[src]

Formats the value using the given formatter. Read more

impl Display for DrawingError
[src]

Formats the value using the given formatter. Read more

impl Error for DrawingError
[src]

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

This method is soft-deprecated. Read more

Auto Trait Implementations