1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 20:05:14 +00:00
qb64/internal/help/_gltencilOp.md

85 lines
5.5 KiB
Markdown

**_glStencilOp:** set front and back stencil test actions
## Syntax
SUB _glStencilOp (BYVAL fail AS _UNSIGNED LONG, BYVAL zfail AS _UNSIGNED LONG, BYVAL zpass AS _UNSIGNED LONG)
void **_glStencilOp**(GLenum sfail, GLenum dpfail, GLenum dppass);
; sfail
> Specifies the action to take when the stencil test fails. Eight symbolic constants are accepted: [_GL_KEEP](_GL_KEEP), [_GL_ZERO](_GL_ZERO), [_GL_REPLACE](_GL_REPLACE), [_GL_INCR](_GL_INCR), [_GL_INCR_WRAP](_GL_INCR_WRAP), [_GL_DECR](_GL_DECR), [_GL_DECR_WRAP](_GL_DECR_WRAP), and [_GL_INVERT](_GL_INVERT). The initial value is [_GL_KEEP](_GL_KEEP).
; dpfail
> Specifies the stencil action when the stencil test passes, but the depth test fails. dpfail accepts the same symbolic constants as sfail. The initial value is [_GL_KEEP](_GL_KEEP).
; dppass
> Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is [_GL_KEEP](_GL_KEEP).
## Description
Stenciling, 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](_glEnable) and [_glDisable](_glDisable) with argument [_GL_STENCIL_TEST](_GL_STENCIL_TEST); to control it, call [_glStencilFunc](_glStencilFunc) or [_glStencilFuncSeparate](_glStencilFuncSeparate).
There can be two separate sets of sfail, dpfail, and dppass parameters; one affects back-facing polygons, and the other affects front-facing polygons as well as other non-polygon primitives. [_glStencilOp](_glStencilOp) sets both front and back stencil state to the same values. Use [_glStencilOpSeparate](_glStencilOpSeparate) to set front and back stencil state to different values.
**_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 sfail specifies what happens to the stencil buffer contents. The following eight actions are possible.
; [_GL_KEEP](_GL_KEEP)
> Keeps the current value.
; [_GL_ZERO](_GL_ZERO)
> Sets the stencil buffer value to 0.
; [_GL_REPLACE](_GL_REPLACE)
> Sets the stencil buffer value to *ref*, as specified by [_glStencilFunc](_glStencilFunc).
; [_GL_INCR](_GL_INCR)
> Increments the current stencil buffer value. Clamps to the maximum representable unsigned value.
; [_GL_INCR_WRAP](_GL_INCR_WRAP)
> Increments the current stencil buffer value. Wraps stencil buffer value to zero when incrementing the maximum representable unsigned value.
; [_GL_DECR](_GL_DECR)
> Decrements the current stencil buffer value. Clamps to 0.
; [_GL_DECR_WRAP](_GL_DECR_WRAP)
> Decrements the current stencil buffer value. Wraps stencil buffer value to the maximum representable unsigned value when decrementing a stencil buffer value of zero.
; [_GL_INVERT](_GL_INVERT)
> Bitwise inverts the current stencil buffer value.
Stencil buffer values are treated as unsigned integers. When incremented and decremented, values are clamped to 0 and 2<sup>n</sup> - 1, where *n* is the value returned by querying [_GL_STENCIL_BITS](_GL_STENCIL_BITS).
The other two arguments to **_glStencilOp** specify stencil buffer actions that depend on whether subsequent depth buffer tests succeed (dppass) or fail (dpfail) (see [_glDepthFunc](_glDepthFunc)). The actions are specified using the same eight symbolic constants as sfail. Note that dpfail is ignored when there is no depth buffer, or when the depth buffer is not enabled. In these cases, sfail and dppass specify stencil action when the stencil test fails and passes, respectively.
## Notes
Initially 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**.
[_glStencilOp](_glStencilOp) is the same as calling [_glStencilOpSeparate](_glStencilOpSeparate) with face set to [_GL_FRONT_AND_BACK](_GL_FRONT_AND_BACK).
## Error(s)
[_GL_INVALID_ENUM](_GL_INVALID_ENUM) is generated if sfail, dpfail, or dppass is any value other than the defined constant values.
## Use With
[_glGet](_glGet) with argument [_GL_STENCIL_FAIL](_GL_STENCIL_FAIL), [_GL_STENCIL_PASS_DEPTH_PASS](_GL_STENCIL_PASS_DEPTH_PASS), [_GL_STENCIL_PASS_DEPTH_FAIL](_GL_STENCIL_PASS_DEPTH_FAIL), [_GL_STENCIL_BACK_FAIL](_GL_STENCIL_BACK_FAIL), [_GL_STENCIL_BACK_PASS_DEPTH_PASS](_GL_STENCIL_BACK_PASS_DEPTH_PASS), [_GL_STENCIL_BACK_PASS_DEPTH_FAIL](_GL_STENCIL_BACK_PASS_DEPTH_FAIL), or [_GL_STENCIL_BITS](_GL_STENCIL_BITS)
[_glIsEnabled](_glIsEnabled) with argument [_GL_STENCIL_TEST](_GL_STENCIL_TEST)
## See Also
[_GL](_GL)
[_glBlendFunc](_glBlendFunc), [_glDepthFunc](_glDepthFunc), [_glEnable](_glEnable), [_glLogicOp](_glLogicOp), [_glStencilFunc](_glStencilFunc), [_glStencilFuncSeparate](_glStencilFuncSeparate), [_glStencilMask](_glStencilMask), [_glStencilMaskSeparate](_glStencilMaskSeparate), [_glStencilOpSeparate](_glStencilOpSeparate)