![]() | glStencilFunc Method |
Namespace: Ooogles
public static void StencilFunc( glCompareFunc func, int reference = 0, uint mask = 4294967295 )
The stencil test conditionally eliminates a pixel based on the outcome of a comparison between the reference value and the value in the stencil buffer. To enable and disable the test, call Enable(glCapability) and Disable(glCapability) with argument StencilTest. To specify actions based on the outcome of the stencil test, call StencilOperation(glStencilOp, glStencilOp, glStencilOp) or StencilOperationSeparate(glFace, glStencilOp, glStencilOp, glStencilOp).
There can be two separate sets of func, reference, and mask parameters; one affects back-facing polygons, and the other affects front-facing polygons as well as other non-polygon primitives. StencilFunc sets both front and back stencil state to the same values. Use StencilFuncSeparate(glFace, glCompareFunc, Int32, UInt32) to set front and back stencil state to different values.
func is an enum that determines the stencil comparison function. It accepts one of eight values (see glCompareFunc).
reference is an integer reference value that is used in the stencil comparison. It is clamped to the range [0, 2n - 1], where n is the number of bitplanes in the stencil buffer.
mask is bitwise ANDed with both the reference value and the stored stencil value, with the ANDed values participating in the comparison.
Note: initially, the stencil test is disabled. If there is no stencil buffer, no stencil modification can occur and it is as if the stencil test always passes.
Note: StencilFunc is the same as calling StencilFuncSeparate(glFace, glCompareFunc, Int32, UInt32) with face set to FrontAndBack.
OpenGL API: glStencilFunc