pub enum Flag {
Blend = 3_042,
DepthTest = 2_929,
Dither = 3_024,
PolygonOffsetFill = 32_823,
SampleAlphaToCoverage = 32_926,
SampleCoverage = 32_928,
ScissorTest = 3_089,
StencilTest = 2_960,
}
Variants§
Blend = 3_042
Passed to enable/disable to turn on/off blending. Can also be used with getParameter to find the current blending method.
DepthTest = 2_929
Passed to enable/disable to turn on/off the depth test. Can also be used with getParameter to query the depth test.
Dither = 3_024
Passed to enable/disable to turn on/off dithering. Can also be used with getParameter to find the current dithering method.
PolygonOffsetFill = 32_823
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.
SampleAlphaToCoverage = 32_926
Passed to enable/disable to turn on/off the alpha to coverage. Used in multi-sampling alpha channels.
SampleCoverage = 32_928
Passed to enable/disable to turn on/off the sample coverage. Used in multi-sampling.
ScissorTest = 3_089
Passed to enable/disable to turn on/off the scissor test. Can also be used with getParameter to query the scissor test.
StencilTest = 2_960
Passed to enable/disable to turn on/off the stencil test. Can also be used with getParameter to query the stencil test.