--- title: WebGLRenderingContext.clearStencil() slug: Web/API/WebGLRenderingContext/clearStencil translation_of: Web/API/WebGLRenderingContext/clearStencil ---
WebGL API の WebGLRenderingContext.clearStencil()
メソッドは、ステンシルバッファーを消去する値を指定します。
この指定は、{{domxref("WebGLRenderingContext.clear", "clear()")}} メソッドを呼ぶときに使用されるステンシルの値です。
void gl.clearStencil(s);
s
ありません。
gl.clearStencil(1);
現在のステンシルを消去する値を取得するには、STENCIL_CLEAR_VALUE
定数で問い合わせます。
gl.getParameter(gl.STENCIL_CLEAR_VALUE); // 1
仕様策定状況 | 策定状況 | コメント |
---|---|---|
{{SpecName('WebGL', "#5.14.3", "clearStencil")}} | {{Spec2('WebGL')}} | 初回定義。 |
{{SpecName('OpenGL ES 2.0', "glClearStencil.xml", "glClearStencil")}} | {{Spec2('OpenGL ES 2.0')}} | OpenGL API のマニュアルページ。 |
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("api.WebGLRenderingContext.clearStencil")}}