Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 1.17 KB

File metadata and controls

59 lines (40 loc) · 1.17 KB
title short-title slug page-type browser-compat
WebGLRenderingContext: clearStencil() method
clearStencil()
Web/API/WebGLRenderingContext/clearStencil
web-api-instance-method
api.WebGLRenderingContext.clearStencil

{{APIRef("WebGL")}}

The WebGLRenderingContext.clearStencil() method of the WebGL API specifies the clear value for the stencil buffer.

This specifies what stencil value to use when calling the {{domxref("WebGLRenderingContext.clear", "clear()")}} method.

Syntax

clearStencil(s)

Parameters

  • s
    • : A {{domxref("WebGL_API/Types", "GLint")}} specifying the index used when the stencil buffer is cleared. Default value: 0.

Return value

None ({{jsxref("undefined")}}).

Examples

gl.clearStencil(1);

To get the current stencil clear value, query the STENCIL_CLEAR_VALUE constant.

gl.getParameter(gl.STENCIL_CLEAR_VALUE);
// 1

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("WebGLRenderingContext.clear()")}}
  • {{domxref("WebGLRenderingContext.clearColor()")}}
  • {{domxref("WebGLRenderingContext.clearDepth()")}}