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= "glSamplerParameter" >
<info >
2013-11-03 11:43:50 +00:00
<copyright >
2014-03-28 19:06:55 +00:00
<year > 2010-2014</year>
2013-11-03 11:43:50 +00:00
<holder > KhronosGroup</holder>
</copyright>
2014-03-28 19:06:55 +00:00
</info>
2013-10-10 23:58:54 +00:00
<refmeta >
<refentrytitle > glSamplerParameter</refentrytitle>
<manvolnum > 3G</manvolnum>
</refmeta>
<refnamediv >
<refname > glSamplerParameter</refname>
<refpurpose > set sampler parameters</refpurpose>
</refnamediv>
2014-03-28 19:06:55 +00:00
<refsynopsisdiv >
<title > C Specification</title>
2013-10-10 23:58:54 +00:00
<funcsynopsis >
<funcprototype >
<funcdef > void <function > glSamplerParameterf</function> </funcdef>
<paramdef > GLuint <parameter > sampler</parameter> </paramdef>
<paramdef > GLenum <parameter > pname</parameter> </paramdef>
<paramdef > GLfloat <parameter > param</parameter> </paramdef>
</funcprototype>
</funcsynopsis>
<funcsynopsis >
<funcprototype >
<funcdef > void <function > glSamplerParameteri</function> </funcdef>
<paramdef > GLuint <parameter > sampler</parameter> </paramdef>
<paramdef > GLenum <parameter > pname</parameter> </paramdef>
<paramdef > GLint <parameter > param</parameter> </paramdef>
</funcprototype>
</funcsynopsis>
2013-11-03 11:43:50 +00:00
<!-- Vector commands -->
2013-10-10 23:58:54 +00:00
<funcsynopsis >
<funcprototype >
<funcdef > void <function > glSamplerParameterfv</function> </funcdef>
<paramdef > GLuint <parameter > sampler</parameter> </paramdef>
<paramdef > GLenum <parameter > pname</parameter> </paramdef>
<paramdef > const GLfloat * <parameter > params</parameter> </paramdef>
</funcprototype>
</funcsynopsis>
<funcsynopsis >
<funcprototype >
<funcdef > void <function > glSamplerParameteriv</function> </funcdef>
<paramdef > GLuint <parameter > sampler</parameter> </paramdef>
<paramdef > GLenum <parameter > pname</parameter> </paramdef>
<paramdef > const GLint * <parameter > params</parameter> </paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "parameters" > <title > Parameters</title>
2013-10-10 23:58:54 +00:00
<variablelist >
<varlistentry >
<term > <parameter > sampler</parameter> </term>
<listitem >
<para >
Specifies the sampler object whose parameter to modify.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > pname</parameter> </term>
<listitem >
<para >
2014-03-28 19:06:55 +00:00
Specifies the symbolic name of a single-valued sampler parameter.
<parameter > pname</parameter> can be one of the following:
2013-10-10 23:58:54 +00:00
<constant > GL_TEXTURE_WRAP_S</constant> ,
<constant > GL_TEXTURE_WRAP_T</constant> ,
<constant > GL_TEXTURE_WRAP_R</constant> ,
<constant > GL_TEXTURE_MIN_FILTER</constant> ,
<constant > GL_TEXTURE_MAG_FILTER</constant> ,
<constant > GL_TEXTURE_MIN_LOD</constant> ,
<constant > GL_TEXTURE_MAX_LOD</constant> ,
<constant > GL_TEXTURE_COMPARE_MODE</constant> , or
<constant > GL_TEXTURE_COMPARE_FUNC</constant> .
</para>
</listitem>
</varlistentry>
2013-11-03 11:43:50 +00:00
<varlistentry >
<term > <parameter > param</parameter> </term>
<listitem >
<para >
For the scalar commands, specifies the value of
<parameter > pname</parameter> .
</para>
</listitem>
</varlistentry>
2013-10-10 23:58:54 +00:00
<varlistentry >
<term > <parameter > params</parameter> </term>
<listitem >
<para >
2013-11-03 11:43:50 +00:00
For the vector commands
(<function > glSamplerParameter*v</function> ), specifies a
pointer to an array where the value or values of
<parameter > pname</parameter> are stored.
2013-10-10 23:58:54 +00:00
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "description" > <title > Description</title>
2013-10-10 23:58:54 +00:00
<para >
<function > glSamplerParameter</function> assigns the value or values in <parameter > params</parameter> to the sampler parameter
specified as <parameter > pname</parameter> .
<parameter > sampler</parameter> specifies the sampler object to be modified, and must be the name of a sampler object previously
returned from a call to <citerefentry > <refentrytitle > glGenSamplers</refentrytitle> </citerefentry> .
The following symbols are accepted in <parameter > pname</parameter> :
</para>
<variablelist >
<varlistentry >
<term > <constant > GL_TEXTURE_MIN_FILTER</constant> </term>
<listitem >
<para >
The texture minifying function is used whenever the pixel being textured
maps to an area greater than one texture element.
There are six defined minifying functions.
Two of them use the nearest one or nearest four texture elements
to compute the texture value.
The other four use mipmaps.
</para>
<para >
A mipmap is an ordered set of arrays representing the same image
at progressively lower resolutions.
2013-11-03 11:43:50 +00:00
If the texture has dimensions
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 2 sup n times 2 sup m: -->
<mml:mrow >
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mi mathvariant= "italic" > n</mml:mi>
</mml:msup>
<mml:mo > × </mml:mo>
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mi mathvariant= "italic" > m</mml:mi>
</mml:msup>
</mml:mrow>
</mml:math> </inlineequation> ,
there are
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: max ( n, m ) + 1: -->
<mml:mrow >
<mml:mrow >
<mml:mi mathvariant= "italic" > max</mml:mi>
<mml:mo > ⁡ </mml:mo>
<mml:mfenced open= "(" close= ")" >
<mml:mi mathvariant= "italic" > n</mml:mi>
<mml:mi mathvariant= "italic" > m</mml:mi>
</mml:mfenced>
</mml:mrow>
<mml:mo > +</mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:math> </inlineequation>
mipmaps.
The first mipmap is the original texture,
2013-11-03 11:43:50 +00:00
with dimensions
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 2 sup n times 2 sup m: -->
<mml:mrow >
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mi mathvariant= "italic" > n</mml:mi>
</mml:msup>
<mml:mo > × </mml:mo>
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mi mathvariant= "italic" > m</mml:mi>
</mml:msup>
</mml:mrow>
</mml:math> </inlineequation> .
2013-11-03 11:43:50 +00:00
Each subsequent mipmap has dimensions
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 2 sup { k - 1 } times 2 sup { l - 1 }: -->
<mml:mrow >
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mfenced open= "" close= "" >
<mml:mrow >
<mml:mi mathvariant= "italic" > k</mml:mi>
<mml:mo > -</mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:mfenced>
</mml:msup>
<mml:mo > × </mml:mo>
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mfenced open= "" close= "" >
<mml:mrow >
<mml:mi mathvariant= "italic" > l</mml:mi>
<mml:mo > -</mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:mfenced>
</mml:msup>
</mml:mrow>
</mml:math> </inlineequation> ,
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" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 2 sup k times 2 sup l: -->
<mml:mrow >
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mi mathvariant= "italic" > k</mml:mi>
</mml:msup>
<mml:mo > × </mml:mo>
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mi mathvariant= "italic" > l</mml:mi>
</mml:msup>
</mml:mrow>
</mml:math> </inlineequation>
are the dimensions of the previous mipmap,
2013-11-03 11:43:50 +00:00
until either
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: k = 0: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > k</mml:mi>
<mml:mo > =</mml:mo>
<mml:mn > 0</mml:mn>
</mml:mrow>
</mml:math> </inlineequation>
2013-11-03 11:43:50 +00:00
or
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: l = 0: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > l</mml:mi>
<mml:mo > =</mml:mo>
<mml:mn > 0</mml:mn>
</mml:mrow>
</mml:math> </inlineequation> .
At that point,
2013-11-03 11:43:50 +00:00
subsequent mipmaps have dimension
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 1 times 2 sup { l - 1 }: -->
<mml:mrow >
<mml:mn > 1</mml:mn>
<mml:mo > × </mml:mo>
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mfenced open= "" close= "" >
<mml:mrow >
<mml:mi mathvariant= "italic" > l</mml:mi>
<mml:mo > -</mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:mfenced>
</mml:msup>
</mml:mrow>
</mml:math> </inlineequation>
2013-11-03 11:43:50 +00:00
or
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 2 sup { k - 1} times 1: -->
<mml:mrow >
<mml:msup > <mml:mn > 2</mml:mn>
<mml:mfenced open= "" close= "" >
<mml:mrow >
<mml:mi mathvariant= "italic" > k</mml:mi>
<mml:mo > -</mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:mfenced>
</mml:msup>
<mml:mo > × </mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:math> </inlineequation>
until the final mipmap,
2013-11-03 11:43:50 +00:00
which has dimension
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 1 times 1: -->
<mml:mrow >
<mml:mn > 1</mml:mn>
<mml:mo > × </mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:math> </inlineequation> .
2014-03-28 19:06:55 +00:00
To define the mipmaps, call <citerefentry > <refentrytitle > glTexStorage2D</refentrytitle> </citerefentry> , <citerefentry > <refentrytitle > glTexImage2D</refentrytitle> </citerefentry> ,
<citerefentry > <refentrytitle > glTexStorage2D</refentrytitle> </citerefentry> , <citerefentry > <refentrytitle > glTexImage3D</refentrytitle> </citerefentry> ,
or <citerefentry > <refentrytitle > glCopyTexImage2D</refentrytitle> </citerefentry>
2013-10-10 23:58:54 +00:00
with the <emphasis > level</emphasis> argument indicating the order of the mipmaps.
Level 0 is the original texture;
2013-11-03 11:43:50 +00:00
level
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: max ( n, m ): -->
<mml:mrow >
<mml:mi mathvariant= "italic" > max</mml:mi>
<mml:mo > ⁡ </mml:mo>
<mml:mfenced open= "(" close= ")" >
<mml:mi mathvariant= "italic" > n</mml:mi>
<mml:mi mathvariant= "italic" > m</mml:mi>
</mml:mfenced>
</mml:mrow>
</mml:math> </inlineequation>
2013-11-03 11:43:50 +00:00
is the final
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 1 times 1: -->
<mml:mrow >
<mml:mn > 1</mml:mn>
<mml:mo > × </mml:mo>
<mml:mn > 1</mml:mn>
</mml:mrow>
</mml:math> </inlineequation>
mipmap.
</para>
<para >
<parameter > params</parameter> supplies a function for minifying the texture as one of the
following:
<variablelist >
<varlistentry >
<term > <constant > GL_NEAREST</constant> </term>
<listitem >
<para >
Returns the value of the texture element that is nearest
(in Manhattan distance)
to the center of the pixel being textured.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_LINEAR</constant> </term>
<listitem >
<para >
Returns the weighted average of the four texture elements
that are closest to the center of the pixel being textured.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_NEAREST_MIPMAP_NEAREST</constant> </term>
<listitem >
<para >
Chooses the mipmap that most closely matches the size of the pixel
being textured and uses the <constant > GL_NEAREST</constant> criterion
(the texture element nearest to the center of the pixel)
to produce a texture value.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_LINEAR_MIPMAP_NEAREST</constant> </term>
<listitem >
<para >
Chooses the mipmap that most closely matches the size of the pixel
being textured and uses the <constant > GL_LINEAR</constant> criterion
(a weighted average of the four texture elements that are closest
to the center of the pixel)
to produce a texture value.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_NEAREST_MIPMAP_LINEAR</constant> </term>
<listitem >
<para >
Chooses the two mipmaps that most closely match the size of the pixel
being textured and uses the <constant > GL_NEAREST</constant> criterion
(the texture element nearest to the center of the pixel)
to produce a texture value from each mipmap.
The final texture value is a weighted average of those two values.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_LINEAR_MIPMAP_LINEAR</constant> </term>
<listitem >
<para >
Chooses the two mipmaps that most closely match the size of the pixel
being textured and uses the <constant > GL_LINEAR</constant> criterion
(a weighted average of the four texture elements that are closest
to the center of the pixel)
to produce a texture value from each mipmap.
The final texture value is a weighted average of those two values.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
<para >
As more texture elements are sampled in the minification process,
fewer aliasing artifacts will be apparent.
While the <constant > GL_NEAREST</constant> and <constant > GL_LINEAR</constant> minification functions can be
faster than the other four,
they sample only one or four texture elements to determine the texture value
of the pixel being rendered and can produce moire patterns
or ragged transitions.
The initial value of <constant > GL_TEXTURE_MIN_FILTER</constant> is
<constant > GL_NEAREST_MIPMAP_LINEAR</constant> .
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_TEXTURE_MAG_FILTER</constant> </term>
<listitem >
<para >
The texture magnification function is used when the pixel being textured
maps to an area less than or equal to one texture element.
It sets the texture magnification function to either <constant > GL_NEAREST</constant>
or <constant > GL_LINEAR</constant> (see below). <constant > GL_NEAREST</constant> is generally faster
than <constant > GL_LINEAR</constant> ,
but it can produce textured images with sharper edges
because the transition between texture elements is not as smooth.
The initial value of <constant > GL_TEXTURE_MAG_FILTER</constant> is <constant > GL_LINEAR</constant> .
<variablelist >
<varlistentry >
<term > <constant > GL_NEAREST</constant> </term>
<listitem >
<para >
Returns the value of the texture element that is nearest
(in Manhattan distance)
to the center of the pixel being textured.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_LINEAR</constant> </term>
<listitem >
<para >
Returns the weighted average of the four texture elements
that are closest to the center of the pixel being textured.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
</variablelist>
<para >
</para>
<variablelist >
<varlistentry >
<term > <constant > GL_TEXTURE_MIN_LOD</constant> </term>
<listitem >
<para >
Sets the minimum level-of-detail parameter. This floating-point value
limits the selection of highest resolution mipmap (lowest mipmap
level). The initial value is -1000.
</para>
</listitem>
</varlistentry>
</variablelist>
<para >
</para>
<variablelist >
<varlistentry >
<term > <constant > GL_TEXTURE_MAX_LOD</constant> </term>
<listitem >
<para >
Sets the maximum level-of-detail parameter. This floating-point value
limits the selection of the lowest resolution mipmap (highest mipmap
level). The initial value is 1000.
</para>
</listitem>
</varlistentry>
</variablelist>
<para >
</para>
<variablelist >
<varlistentry >
<term > <constant > GL_TEXTURE_WRAP_S</constant> </term>
<listitem >
<para >
2013-11-03 11:43:50 +00:00
Sets the wrap parameter for texture coordinate
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" > s</mml:mi> </mml:math> </inlineequation>
to either <constant > GL_CLAMP_TO_EDGE</constant> , <constant > GL_MIRRORED_REPEAT</constant> , or
<constant > GL_REPEAT</constant> . <constant > GL_CLAMP_TO_EDGE</constant> causes
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" > <mml:mi mathvariant= "italic" > s</mml:mi> </mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
coordinates to be clamped to the
2013-11-03 11:43:50 +00:00
range
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: left [ {1 over 2N}, 1 - {1 over 2N} right ]: -->
<mml:mfenced open= "[" close= "]" >
<mml:mfenced open= "" close= "" >
<mml:mrow >
<mml:mfrac >
<mml:mn > 1</mml:mn>
2013-11-03 11:43:50 +00:00
<mml:mrow >
<mml:mn > 2</mml:mn> <mml:mi mathvariant= "italic" > N</mml:mi>
</mml:mrow>
2013-10-10 23:58:54 +00:00
</mml:mfrac>
</mml:mrow>
</mml:mfenced>
<mml:mrow >
<mml:mn > 1</mml:mn>
<mml:mo > -</mml:mo>
<mml:mfenced open= "" close= "" >
<mml:mrow >
<mml:mfrac >
<mml:mn > 1</mml:mn>
2013-11-03 11:43:50 +00:00
<mml:mrow >
<mml:mn > 2</mml:mn> <mml:mi mathvariant= "italic" > N</mml:mi>
</mml:mrow>
2013-10-10 23:58:54 +00:00
</mml:mfrac>
</mml:mrow>
</mml:mfenced>
</mml:mrow>
</mml:mfenced>
</mml:math> </inlineequation> ,
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>
2013-10-10 23:58:54 +00:00
is the size
of the texture in the direction of clamping. <constant > GL_REPEAT</constant> causes the
2013-11-03 11:43:50 +00:00
integer part of the
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" > s</mml:mi> </mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
coordinate to be ignored; the GL uses only the
fractional part, thereby creating a repeating pattern.
2013-11-03 11:43:50 +00:00
<constant > GL_MIRRORED_REPEAT</constant> causes the
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" > s</mml:mi> </mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
coordinate to be set to the
2013-11-03 11:43:50 +00:00
fractional part of the texture coordinate if the integer part of
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" > s</mml:mi> </mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
is
2013-11-03 11:43:50 +00:00
even; if the integer part of
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" > s</mml:mi> </mml:math> </inlineequation>
2013-11-03 11:43:50 +00:00
is odd, then the
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" > s</mml:mi> </mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
texture coordinate is
2013-11-03 11:43:50 +00:00
set to
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: 1 - frac(s): -->
<mml:mrow >
<mml:mn > 1</mml:mn>
<mml:mo > -</mml:mo>
<mml:mrow >
<mml:mi mathvariant= "italic" > frac</mml:mi>
<mml:mo > ⁡ </mml:mo>
<mml:mfenced open= "(" close= ")" >
<mml:mi mathvariant= "italic" > s</mml:mi>
</mml:mfenced>
</mml:mrow>
</mml:mrow>
</mml:math> </inlineequation> ,
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" >
2013-10-10 23:58:54 +00:00
<!-- eqn: frac(s): -->
<mml:mrow >
<mml:mi mathvariant= "italic" > frac</mml:mi>
<mml:mo > ⁡ </mml:mo>
<mml:mfenced open= "(" close= ")" >
<mml:mi mathvariant= "italic" > s</mml:mi>
</mml:mfenced>
</mml:mrow>
</mml:math> </inlineequation>
represents the fractional part of
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" > s</mml:mi> </mml:math> </inlineequation> .
2013-10-10 23:58:54 +00:00
Initially, <constant > GL_TEXTURE_WRAP_S</constant> is set to <constant > GL_REPEAT</constant> .
</para>
</listitem>
</varlistentry>
</variablelist>
<para >
</para>
<variablelist >
<varlistentry >
<term > <constant > GL_TEXTURE_WRAP_T</constant> </term>
<listitem >
<para >
2013-11-03 11:43:50 +00:00
Sets the wrap parameter for texture coordinate
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" > t</mml:mi> </mml:math> </inlineequation>
to either <constant > GL_CLAMP_TO_EDGE</constant> , <constant > GL_MIRRORED_REPEAT</constant> , or
<constant > GL_REPEAT</constant> . See the discussion under <constant > GL_TEXTURE_WRAP_S</constant> .
2013-10-10 23:58:54 +00:00
Initially, <constant > GL_TEXTURE_WRAP_T</constant> is set to <constant > GL_REPEAT</constant> .
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_TEXTURE_WRAP_R</constant> </term>
<listitem >
<para >
2013-11-03 11:43:50 +00:00
Sets the wrap parameter for texture coordinate
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" > r</mml:mi> </mml:math> </inlineequation>
to either <constant > GL_CLAMP_TO_EDGE</constant> , <constant > GL_MIRRORED_REPEAT</constant> , or
<constant > GL_REPEAT</constant> . See the discussion under <constant > GL_TEXTURE_WRAP_S</constant> .
2013-10-10 23:58:54 +00:00
Initially, <constant > GL_TEXTURE_WRAP_R</constant> is set to <constant > GL_REPEAT</constant> .
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_TEXTURE_COMPARE_MODE</constant> </term>
<listitem >
<para >
Specifies the texture comparison mode for currently bound textures.
2014-03-28 19:06:55 +00:00
That is, a texture whose base internal format is <constant > GL_DEPTH_COMPONENT</constant> or
<constant > GL_DEPTH_STENCIL</constant> ; see
2013-10-10 23:58:54 +00:00
<citerefentry > <refentrytitle > glTexImage2D</refentrytitle> </citerefentry> )
Permissible values are:
<variablelist >
<varlistentry >
<term > <constant > GL_COMPARE_REF_TO_TEXTURE</constant> </term>
<listitem >
<para >
2013-11-03 11:43:50 +00:00
Specifies that the interpolated and clamped
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" > r</mml:mi> </mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
texture coordinate should
be compared to the value in the currently bound texture. See the
discussion of <constant > GL_TEXTURE_COMPARE_FUNC</constant> for details of how the comparison
is evaluated. The result of the comparison is assigned to the red channel.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_NONE</constant> </term>
<listitem >
<para >
Specifies that the red channel should be assigned the
appropriate value from the currently bound texture.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <constant > GL_TEXTURE_COMPARE_FUNC</constant> </term>
<listitem >
<para >
Specifies the comparison operator used when <constant > GL_TEXTURE_COMPARE_MODE</constant> is
set to <constant > GL_COMPARE_REF_TO_TEXTURE</constant> . Permissible values are:
2013-12-15 21:32:32 +00:00
<informaltable >
2013-10-10 23:58:54 +00:00
<tgroup cols= "2" align= "left" >
<colspec />
<colspec />
<thead >
<row >
2013-12-15 21:32:32 +00:00
<entry >
<emphasis role= "bold" > Texture Comparison Function </emphasis>
</entry>
<entry >
<emphasis role= "bold" > Computed result </emphasis>
</entry>
2013-10-10 23:58:54 +00:00
</row>
</thead>
<tbody >
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_LEQUAL</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: result = left { cpile {1.0 above 0.0} lpile {r <= {D sub t} above r > {D sub t}}: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "{" close= "" >
<mml:mrow >
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mn > 1.0</mml:mn>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mn > 0.0</mml:mn>
</mml:mtd> </mml:mtr>
</mml:mtable>
<mml:mo > ⁢ </mml:mo>
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > < =</mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > > </mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
</mml:mtable>
</mml:mrow>
</mml:mfenced>
</mml:mrow>
2013-11-03 11:43:50 +00:00
</mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_GEQUAL</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: result = left { cpile {1.0 above 0.0} lpile {r <= {D sub t} above r > {D sub t}}: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "{" close= "" >
<mml:mrow >
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mn > 1.0</mml:mn>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mn > 0.0</mml:mn>
</mml:mtd> </mml:mtr>
</mml:mtable>
<mml:mo > ⁢ </mml:mo>
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > > =</mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > < </mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
</mml:mtable>
</mml:mrow>
</mml:mfenced>
</mml:mrow>
2013-11-03 11:43:50 +00:00
</mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_LESS</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: result = left { cpile {1.0 above 0.0} lpile {r <= {D sub t} above r > {D sub t}}: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "{" close= "" >
<mml:mrow >
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mn > 1.0</mml:mn>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mn > 0.0</mml:mn>
</mml:mtd> </mml:mtr>
</mml:mtable>
<mml:mo > ⁢ </mml:mo>
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > < </mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > > =</mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
</mml:mtable>
</mml:mrow>
</mml:mfenced>
</mml:mrow>
2013-11-03 11:43:50 +00:00
</mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_GREATER</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: result = left { cpile {1.0 above 0.0} lpile {r <= {D sub t} above r > {D sub t}}: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "{" close= "" >
<mml:mrow >
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mn > 1.0</mml:mn>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mn > 0.0</mml:mn>
</mml:mtd> </mml:mtr>
</mml:mtable>
<mml:mo > ⁢ </mml:mo>
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > > </mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > < =</mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
</mml:mtable>
</mml:mrow>
</mml:mfenced>
</mml:mrow>
2013-11-03 11:43:50 +00:00
</mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_EQUAL</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: result = left { cpile {1.0 above 0.0} lpile {r <= {D sub t} above r > {D sub t}}: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "{" close= "" >
<mml:mrow >
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mn > 1.0</mml:mn>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mn > 0.0</mml:mn>
</mml:mtd> </mml:mtr>
</mml:mtable>
<mml:mo > ⁢ </mml:mo>
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > ≠ </mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
</mml:mtable>
</mml:mrow>
</mml:mfenced>
</mml:mrow>
2013-11-03 11:43:50 +00:00
</mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_NOTEQUAL</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: result = left { cpile {1.0 above 0.0} lpile {r <= {D sub t} above r > {D sub t}}: -->
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "{" close= "" >
<mml:mrow >
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mn > 1.0</mml:mn>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mn > 0.0</mml:mn>
</mml:mtd> </mml:mtr>
</mml:mtable>
<mml:mo > ⁢ </mml:mo>
<mml:mtable >
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > ≠ </mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
<mml:mtr > <mml:mtd >
<mml:mrow >
<mml:mi mathvariant= "italic" > r</mml:mi>
<mml:mo > =</mml:mo>
<mml:mfenced open= "" close= "" >
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:mfenced>
</mml:mrow>
</mml:mtd> </mml:mtr>
</mml:mtable>
</mml:mrow>
</mml:mfenced>
</mml:mrow>
2013-11-03 11:43:50 +00:00
</mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_ALWAYS</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2013-11-03 11:43:50 +00:00
<inlineequation >
2014-03-28 19:06:55 +00:00
<mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mi > 1.0</mml:mi>
</mml:mrow>
</mml:math>
2013-11-03 11:43:50 +00:00
</inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
<row >
2013-12-15 21:32:32 +00:00
<entry >
2013-10-10 23:58:54 +00:00
<constant > GL_NEVER</constant>
</entry>
2013-12-15 21:32:32 +00:00
<entry >
2013-11-03 11:43:50 +00:00
<inlineequation >
2014-03-28 19:06:55 +00:00
<mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<mml:mrow >
<mml:mi mathvariant= "italic" > result</mml:mi>
<mml:mo > =</mml:mo>
<mml:mi > 0.0</mml:mi>
</mml:mrow>
</mml:math>
2013-11-03 11:43:50 +00:00
</inlineequation>
2013-10-10 23:58:54 +00:00
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
2014-03-28 19:06:55 +00:00
where <inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" > <mml:mi mathvariant= "italic" > r</mml:mi> </mml:math> </inlineequation>
2013-11-03 11:43:50 +00:00
is the current interpolated texture coordinate, and
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: D sub t: -->
<mml:msub > <mml:mi mathvariant= "italic" > D</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:math> </inlineequation>
is the texture value sampled from the currently bound texture.
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" > result</mml:mi> </mml:math> </inlineequation>
2013-10-10 23:58:54 +00:00
is assigned to
2014-03-28 19:06:55 +00:00
<inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" >
2013-10-10 23:58:54 +00:00
<!-- eqn: R sub t: -->
<mml:msub > <mml:mi mathvariant= "italic" > R</mml:mi>
<mml:mi mathvariant= "italic" > t</mml:mi>
</mml:msub>
</mml:math> </inlineequation> .
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "notes" > <title > Notes</title>
2013-10-10 23:58:54 +00:00
<para >
If a sampler object is bound to a texture unit and that unit is used to sample from a texture, the parameters in the sampler
are used to sample from the texture, rather than the equivalent parameters in the texture object bound to that unit. This
introduces the possibility of sampling from the same texture object with different sets of sampler state, which may lead to
a condition where a texture is <emphasis > incomplete</emphasis> with respect to one sampler object and not with respect to
another. Thus, completeness can be considered a function of a sampler object and a texture object bound to a single
texture unit, rather than a property of the texture object itself.
</para>
2013-10-23 18:17:08 +00:00
<para >
2014-03-28 19:06:55 +00:00
The results of a texture lookup are undefined if:
<itemizedlist >
<listitem >
<para >
The sampler used in a texture lookup function is not one of the shadow sampler types, the texture object's base
internal format is <constant > GL_DEPTH_COMPONENT</constant> or <constant > GL_DEPTH_STENCIL</constant> , and the
<constant > GL_TEXTURE_COMPARE_MODE</constant> is not <constant > GL_NONE</constant> .
</para>
</listitem>
<listitem >
<para >
The sampler used in a texture lookup function is one of the shadow sampler types, the texture object's base internal format
is <constant > GL_DEPTH_COMPONENT</constant> or <constant > GL_DEPTH_STENCIL</constant> , and the
<constant > GL_TEXTURE_COMPARE_MODE</constant> is <constant > GL_NONE</constant> .
</para>
</listitem>
<listitem >
<para >
The sampler used in a texture lookup function is one of the shadow sampler types, and the texture object's base
internal format is not <constant > GL_DEPTH_COMPONENT</constant> or <constant > GL_DEPTH_STENCIL</constant> .
</para>
</listitem>
</itemizedlist>
2013-10-23 18:17:08 +00:00
</para>
2013-10-10 23:58:54 +00:00
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "errors" > <title > Errors</title>
2013-10-10 23:58:54 +00:00
<para >
2014-03-28 19:06:55 +00:00
<constant > GL_INVALID_OPERATION</constant> is generated if <parameter > sampler</parameter> is not the name of a sampler object previously
2013-10-10 23:58:54 +00:00
returned from a call to <citerefentry > <refentrytitle > glGenSamplers</refentrytitle> </citerefentry> .
</para>
<para >
<constant > GL_INVALID_ENUM</constant> is generated if <parameter > params</parameter> should have a defined
constant value (based on the value of <parameter > pname</parameter> ) and does not.
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "associatedgets" > <title > Associated Gets</title>
2013-10-10 23:58:54 +00:00
<para >
<citerefentry > <refentrytitle > glGetSamplerParameter</refentrytitle> </citerefentry>
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "versions" >
<title > API Version Support</title>
<informaltable >
<tgroup cols= "4" align= "left" >
<xi:include xmlns:xi= "http://www.w3.org/2001/XInclude" href= "apifunchead.xml" xpointer= "xpointer(/*/*)" />
<tbody >
<row >
<entry > <function > glSamplerParameterf</function> </entry>
<xi:include xmlns:xi= "http://www.w3.org/2001/XInclude" href= "apiversion.xml" xpointer= "xpointer(/*/*[@role='es30']/*)" />
</row>
<row >
<entry > <function > glSamplerParameteri</function> </entry>
<xi:include xmlns:xi= "http://www.w3.org/2001/XInclude" href= "apiversion.xml" xpointer= "xpointer(/*/*[@role='es30']/*)" />
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>
<refsect1 xml:id= "seealso" > <title > See Also</title>
2013-10-10 23:58:54 +00:00
<para >
<citerefentry > <refentrytitle > glGenSamplers</refentrytitle> </citerefentry> ,
<citerefentry > <refentrytitle > glBindSampler</refentrytitle> </citerefentry> ,
<citerefentry > <refentrytitle > glDeleteSamplers</refentrytitle> </citerefentry> ,
<citerefentry > <refentrytitle > glIsSampler</refentrytitle> </citerefentry> ,
<citerefentry > <refentrytitle > glBindTexture</refentrytitle> </citerefentry> ,
<citerefentry > <refentrytitle > glTexParameter</refentrytitle> </citerefentry>
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "Copyright" > <title > Copyright</title>
2013-10-10 23:58:54 +00:00
<para >
2014-03-28 19:06:55 +00:00
Copyright <trademark class= "copyright" /> 2010-2014 Khronos Group.
2013-11-03 11:43:50 +00:00
This material may be distributed subject to the terms and conditions set forth in
2013-10-10 23:58:54 +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> .
2013-10-10 23:58:54 +00:00
</para>
</refsect1>
</refentry>