2014-03-28 19:06:55 +00:00
|
|
|
<!DOCTYPE refentry [ <!ENTITY % mathent SYSTEM "math.ent"> %mathent; ]>
|
|
|
|
|
|
|
|
<!-- Converted by db4-upgrade version 1.1 -->
|
|
|
|
|
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="glStencilMaskSeparate">
|
|
|
|
<info>
|
2013-11-03 11:43:50 +00:00
|
|
|
<copyright>
|
|
|
|
<year>1991-2006</year>
|
|
|
|
<holder>Silicon Graphics, Inc.</holder>
|
|
|
|
</copyright>
|
2014-03-28 19:06:55 +00:00
|
|
|
</info>
|
2009-03-08 00:46:58 +00:00
|
|
|
<refmeta>
|
|
|
|
<refentrytitle>glStencilMaskSeparate</refentrytitle>
|
|
|
|
<manvolnum>3G</manvolnum>
|
|
|
|
</refmeta>
|
|
|
|
<refnamediv>
|
|
|
|
<refname>glStencilMaskSeparate</refname>
|
|
|
|
<refpurpose>control the front and/or back writing of individual bits in the stencil planes</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsynopsisdiv><title>C Specification</title>
|
|
|
|
<funcsynopsis>
|
|
|
|
<funcprototype>
|
|
|
|
<funcdef>void <function>glStencilMaskSeparate</function></funcdef>
|
|
|
|
<paramdef>GLenum <parameter>face</parameter></paramdef>
|
|
|
|
<paramdef>GLuint <parameter>mask</parameter></paramdef>
|
|
|
|
</funcprototype>
|
|
|
|
</funcsynopsis>
|
|
|
|
</refsynopsisdiv>
|
2014-03-28 19:06:55 +00:00
|
|
|
<refsect1 xml:id="parameters"><title>Parameters</title>
|
2009-03-08 00:46:58 +00:00
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>face</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Specifies whether the front and/or back stencil writemask is updated.
|
|
|
|
Three symbolic constants are valid:
|
|
|
|
<constant>GL_FRONT</constant>,
|
|
|
|
<constant>GL_BACK</constant>, and
|
|
|
|
<constant>GL_FRONT_AND_BACK</constant>.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>mask</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Specifies a bit mask to enable and disable writing of individual bits
|
|
|
|
in the stencil planes.
|
|
|
|
Initially, the mask is all 1's.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</refsect1>
|
2014-03-28 19:06:55 +00:00
|
|
|
<refsect1 xml:id="description"><title>Description</title>
|
2009-03-08 00:46:58 +00:00
|
|
|
<para>
|
|
|
|
<function>glStencilMaskSeparate</function> controls the writing of individual bits in the stencil planes.
|
2013-11-03 11:43:50 +00:00
|
|
|
The least significant
|
2014-03-28 19:06:55 +00:00
|
|
|
<inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">n</mml:mi></mml:math></inlineequation>
|
2009-03-08 00:46:58 +00:00
|
|
|
bits of <parameter>mask</parameter>,
|
2013-11-03 11:43:50 +00:00
|
|
|
where
|
2014-03-28 19:06:55 +00:00
|
|
|
<inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">n</mml:mi></mml:math></inlineequation>
|
2009-03-08 00:46:58 +00:00
|
|
|
is the number of bits in the stencil buffer,
|
|
|
|
specify a mask.
|
|
|
|
Where a 1 appears in the mask,
|
|
|
|
it's possible to write to the corresponding bit in the stencil buffer.
|
|
|
|
Where a 0 appears,
|
|
|
|
the corresponding bit is write-protected.
|
|
|
|
Initially, all bits are enabled for writing.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
There can be two separate <parameter>mask</parameter> writemasks; one affects back-facing polygons, and the other
|
2013-11-03 11:43:50 +00:00
|
|
|
affects front-facing polygons as well as other non-polygon primitives.
|
2009-03-08 00:46:58 +00:00
|
|
|
<citerefentry><refentrytitle>glStencilMask</refentrytitle></citerefentry> sets both front
|
|
|
|
and back stencil writemasks to the same values, as if
|
|
|
|
<citerefentry><refentrytitle>glStencilMaskSeparate</refentrytitle></citerefentry> were called
|
|
|
|
with <parameter>face</parameter> set to <constant>GL_FRONT_AND_BACK</constant>.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2014-03-28 19:06:55 +00:00
|
|
|
<refsect1 xml:id="errors"><title>Errors</title>
|
2009-03-08 00:46:58 +00:00
|
|
|
<para>
|
2010-11-21 14:34:29 +00:00
|
|
|
<constant>GL_INVALID_ENUM</constant> is generated if <parameter>face</parameter> is not one of the accepted tokens.
|
2009-03-08 00:46:58 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
2014-03-28 19:06:55 +00:00
|
|
|
<refsect1 xml:id="associatedgets"><title>Associated Gets</title>
|
2009-03-08 00:46:58 +00:00
|
|
|
<para>
|
2013-11-03 11:43:50 +00:00
|
|
|
<citerefentry><refentrytitle>glGet</refentrytitle></citerefentry> with argument
|
|
|
|
<constant>GL_STENCIL_WRITEMASK</constant>, <constant>GL_STENCIL_BACK_WRITEMASK</constant>,
|
2009-03-08 00:46:58 +00:00
|
|
|
or <constant>GL_STENCIL_BITS</constant>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2014-03-28 19:06:55 +00:00
|
|
|
<refsect1 xml:id="seealso"><title>See Also</title>
|
2009-03-08 00:46:58 +00:00
|
|
|
<para>
|
|
|
|
<citerefentry><refentrytitle>glColorMask</refentrytitle></citerefentry>,
|
|
|
|
<citerefentry><refentrytitle>glDepthMask</refentrytitle></citerefentry>,
|
|
|
|
<citerefentry><refentrytitle>glStencilFunc</refentrytitle></citerefentry>,
|
|
|
|
<citerefentry><refentrytitle>glStencilFuncSeparate</refentrytitle></citerefentry>,
|
|
|
|
<citerefentry><refentrytitle>glStencilMask</refentrytitle></citerefentry>,
|
|
|
|
<citerefentry><refentrytitle>glStencilOp</refentrytitle></citerefentry>,
|
|
|
|
<citerefentry><refentrytitle>glStencilOpSeparate</refentrytitle></citerefentry>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2014-03-28 19:06:55 +00:00
|
|
|
<refsect1 xml:id="Copyright"><title>Copyright</title>
|
2009-03-08 00:46:58 +00:00
|
|
|
<para>
|
2014-03-28 19:06:55 +00:00
|
|
|
Copyright <trademark class="copyright"/> 2006 Khronos Group.
|
2013-11-03 11:43:50 +00:00
|
|
|
This material may be distributed subject to the terms and conditions set forth in
|
2009-03-08 00:46:58 +00:00
|
|
|
the Open Publication License, v 1.0, 8 June 1999.
|
2014-03-28 19:06:55 +00:00
|
|
|
<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://opencontent.org/openpub/">http://opencontent.org/openpub/</link>.
|
2009-03-08 00:46:58 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|