Enum luminance_glfw::surface::StateQueryError[][src]

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

An error that might happen when the context is queried.

Variants

Trait Implementations

impl Error for StateQueryError
[src]

This method is soft-deprecated. Read more

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

impl Display for StateQueryError
[src]

Formats the value using the given formatter. Read more

impl Debug for StateQueryError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations