GlClearStencil

From QB64 Wiki
Revision as of 15:21, 20 April 2020 by Odin (talk | contribs) (Text replacement - "{{KW|_GL}}" to "SUB _GL")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

_glClearStencil: specify the clear value for the stencil buffer


Syntax

SUB _glClearStencil (BYVAL s AS LONG)
void _glClearStencil(GLint s);


s
Specifies the index used when the stencil buffer is cleared. The initial value is 0.


Description

_glClearStencil specifies the index used by _glClear to clear the stencil buffer. s is masked with 2<sup>m</sup> - 1, where m is the number of bits in the stencil buffer.


Use With:

_glGet with argument _GL_STENCIL_CLEAR_VALUE

_glGet with argument _GL_STENCIL_BITS


See also

SUB _GL _glClear


Copyright: 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License.
For details, see http://oss.sgi.com/projects/FreeB/.



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page