 | glCapability Enumeration |
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxPublic Enumeration Capability
public enum class Capability
Members
| Member name | Value | Description |
---|
| Blend | 3042 |
If enabled, blend the computed fragment color values with the values in the color buffers.
See BlendFunc(glBlendFactor, glBlendFactor).
|
| CullFace | 2884 |
If enabled, cull polygons based on their winding in window coordinates.
See CullFace(glFace).
|
| DepthTest | 2929 |
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).
|
| Dither | 3024 |
If enabled, dither color components or indices before they are written to the color buffer.
|
| PolygonOffsetFill | 32823 |
If enabled, an offset is added to depth values of a polygon's fragments produced by rasterization.
See PolygonOffset(Single, Single) |
| SampleAlphaToCoverage | 32926 |
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.
|
| SampleCoverage | 32928 |
If enabled, the fragment's coverage is ANDed with the temporary coverage value.
See SampleCoverage(Single, Boolean) |
| ScissorTest | 3089 |
If enabled, discard fragments that are outside the scissor rectangle.
See Scissor(Int32, Int32, Int32, Int32) |
| StencilTest | 2960 |
If enabled, do stencil testing and update the stencil buffer.
See StencilFunc(glCompareFunc, Int32, UInt32) and glStencilOp |
See Also