|
NAMEglStencilOp - set stencil test actionsC SPECIFICATIONvoid glStencilOp( GLenum fail,GLenum zfail, GLenum zpass ) PARAMETERS
DESCRIPTIONStenciling, like depth-buffering, enables and disables drawing on a per-pixel basis. You draw into the stencil planes using GL drawing primitives, then render geometry and images, using the stencil planes to mask out portions of the screen. Stenciling is typically used in multipass rendering algorithms to achieve special effects, such as decals, outlining, and constructive solid geometry rendering.The stencil test conditionally eliminates a pixel based on the outcome of a comparison between the value in the stencil buffer and a reference value. To enable and disable the test, call glEnable and glDisable with argument GL_STENCIL_TEST; to control it, call glStencilFunc. glStencilOp takes three arguments that indicate what happens to the stored stencil value while stenciling is enabled. If the stencil test fails, no change is made to the pixel's color or depth buffers, and fail specifies what happens to the stencil buffer contents. The following six actions are possible.
Stencil buffer values are treated as unsigned integers. When incremented and decremented, values are clamped to 0 and , where is the value returned by querying GL_STENCIL_BITS. The other two arguments to glStencilOp specify stencil
buffer actions that depend on whether subsequent depth buffer tests succeed
(zpass) or fail (zfail) (see
NOTESInitially the stencil test is disabled. If there is no stencil buffer, no stencil modification can occur and it is as if the stencil tests always pass, regardless of any call to glStencilOp.ERRORSGL_INVALID_ENUM is generated if fail, zfail, or zpass is any value other than the six defined constant values.GL_INVALID_OPERATION is generated if glStencilOp is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETSglGet with argument GL_STENCIL_FAILglGet with argument GL_STENCIL_PASS_DEPTH_PASS glGet with argument GL_STENCIL_PASS_DEPTH_FAIL glGet with argument GL_STENCIL_BITS glIsEnabled with argument GL_STENCIL_TEST SEE ALSOglAlphaFunc, glBlendFunc, glDepthFunc, glEnable, glLogicOp, glStencilFunc Visit the GSP FreeBSD Man Page Interface. |