Enum glenum::Flag [] [src]

pub enum Flag {
    Blend,
    DepthTest,
    Dither,
    PolygonOffsetFill,
    SampleAlphaToCoverage,
    SampleCoverage,
    ScissorTest,
    StencilTest,
}

Variants

Passed to enable/disable to turn on/off blending. Can also be used with getParameter to find the current blending method.

Passed to enable/disable to turn on/off the depth test. Can also be used with getParameter to query the depth test.

Passed to enable/disable to turn on/off dithering. Can also be used with getParameter to find the current dithering method.

Passed to enable/disable to turn on/off the polygon offset. Useful for rendering hidden-line images, decals, and or solids with highlighted edges. Can also be used with getParameter to query the scissor test.

Passed to enable/disable to turn on/off the alpha to coverage. Used in multi-sampling alpha channels.

Passed to enable/disable to turn on/off the sample coverage. Used in multi-sampling.

Passed to enable/disable to turn on/off the scissor test. Can also be used with getParameter to query the scissor test.

Passed to enable/disable to turn on/off the stencil test. Can also be used with getParameter to query the stencil test.

Trait Implementations

impl Debug for Flag
[src]

[src]

Formats the value using the given formatter.

impl Clone for Flag
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Flag
[src]