Enum luminance::state::StateQueryError[][src]

pub enum StateQueryError {
    UnavailableGraphicsState,
    UnknownBlendingState(GLboolean),
    UnknownBlendingEquation(GLenum),
    UnknownBlendingSrcFactor(GLenum),
    UnknownBlendingDstFactor(GLenum),
    UnknownDepthTestState(GLboolean),
    UnknownFaceCullingState(GLboolean),
    UnknownFaceCullingOrder(GLenum),
    UnknownFaceCullingMode(GLenum),
}

An error that might happen when the context is queried.

Variants

Trait Implementations

impl Debug for StateQueryError
[src]

Formats the value using the given formatter. Read more

impl Display for StateQueryError
[src]

Formats the value using the given formatter. Read more

impl Error for StateQueryError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations