Click or drag to resize

glCapability Enumeration

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum Capability
Members
  Member nameValueDescription
Blend3042 If enabled, blend the computed fragment color values with the values in the color buffers. See BlendFunc(glBlendFactor, glBlendFactor).
CullFace2884 If enabled, cull polygons based on their winding in window coordinates. See CullFace(glFace).
DepthTest2929 If enabled, do depth comparisons and update the depth buffer. Note that even if the depth buffer exists and the depth mask is non-zero, the depth buffer is not updated if the depth test is disabled. See DepthFunc(glCompareFunc) and DepthRange(Single, Single).
Dither3024 If enabled, dither color components or indices before they are written to the color buffer.
PolygonOffsetFill32823 If enabled, an offset is added to depth values of a polygon's fragments produced by rasterization. See PolygonOffset(Single, Single)
SampleAlphaToCoverage32926 If enabled, compute a temporary coverage value where each bit is determined by the alpha value at the corresponding sample location. The temporary coverage value is then ANDed with the fragment coverage value.
SampleCoverage32928 If enabled, the fragment's coverage is ANDed with the temporary coverage value. See SampleCoverage(Single, Boolean)
ScissorTest3089 If enabled, discard fragments that are outside the scissor rectangle. See Scissor(Int32, Int32, Int32, Int32)
StencilTest2960 If enabled, do stencil testing and update the stencil buffer. See StencilFunc(glCompareFunc, Int32, UInt32) and glStencilOp
See Also