<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html
  PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd">
<html
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:mml="http://www.w3.org/1998/Math/MathML"
><head><title>glGet</title><link rel="stylesheet" href="style.css" type="text/css"/><meta name="generator" content="DocBook XSL Stylesheets V1.59.1"/><link rel="home" href="index.xml" title="PyOpenGL 2.0.1.09 Man Pages"/><link rel="up" href="reference-GL.xml" title="GL"/><link rel="previous" href="glGenTextures.3G.xml" title="glGenTextures"/><link rel="next" href="glGetClipPlane.3G.xml" title="glGetClipPlane"/></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">glGet</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="glGenTextures.3G.xml">Prev</a> </td><th width="60%" align="center">GL</th><td width="20%" align="right"> <a accesskey="n" href="glGetClipPlane.3G.xml">Next</a></td></tr></table><hr/></div><div class="refentry" lang="en"><a name="glGet.3G"/><div class="titlepage"/><div class="refnamediv"><a name="glGet.3G-name"/><h2>Name</h2><p>glGetBooleanv, glGetDoublev, glGetFloatv, glGetIntegerv &#8212; return the value or values of a selected parameter</p></div><div class="refsynopsisdiv"><a name="glGet.3G-c_spec"/><h2>C Specification</h2><table class="funcprototype" border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><code>void <tt>glGetBooleanv</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code>GLenum <i><tt>pname</tt></i>, GLboolean *<i><tt>params</tt></i>);</code></td></tr><tr><td valign="top"><code>void <tt>glGetDoublev</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code>GLenum <i><tt>pname</tt></i>, GLdouble *<i><tt>params</tt></i>);</code></td></tr><tr><td valign="top"><code>void <tt>glGetFloatv</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code>GLenum <i><tt>pname</tt></i>, GLfloat *<i><tt>params</tt></i>);</code></td></tr><tr><td valign="top"><code>void <tt>glGetIntegerv</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code>GLenum <i><tt>pname</tt></i>, GLint *<i><tt>params</tt></i>);</code></td></tr></table></div><div class="refsynopsisdiv"><a name="glGet.3G-python_spec"/><h2>Python Specification</h2><table class="funcprototype" border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><code><tt>glGetBooleanv</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code><i><tt>pname</tt></i>) &#8594; <i><tt>params</tt></i></code></td></tr><tr><td valign="top"><code><tt>glGetDoublev</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code><i><tt>pname</tt></i>) &#8594; <i><tt>params</tt></i></code></td></tr><tr><td valign="top"><code><tt>glGetFloatv</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code><i><tt>pname</tt></i>) &#8594; <i><tt>params</tt></i></code></td></tr><tr><td valign="top"><code><tt>glGetIntegerv</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code><i><tt>pname</tt></i>) &#8594; <i><tt>params</tt></i></code></td></tr></table></div><div class="refsect1" lang="en"><a name="glGet.3G-parameters"/><h2>Parameters</h2><div class="variablelist"><dl><dt><span class="term"><i><tt>pname</tt></i></span></dt><dd>
						Specifies the parameter value to be returned. The symbolic constants in the list below are accepted.
					</dd><dt><span class="term"><i><tt>params</tt></i></span></dt><dd>
						Returns the value or values of the specified parameter.
					</dd></dl></div></div><div class="refsect1" lang="en"><a name="glGet.3G-description"/><h2>Description</h2><p>
			These four commands return values for simple state variables in GL. <i><tt>pname</tt></i> is a symbolic constant
			indicating the state variable to be returned, and <i><tt>params</tt></i> is a pointer to an array of the
			indicated type in which to place the returned data.
		</p><p>
			Type conversion is performed if <i><tt>params</tt></i> has a different type than the state variable value being
			requested. If <tt>glGetBooleanv</tt> is called, a floating-point (or integer) value is converted to
			<tt>GL_FALSE</tt> if and only if it is 0.0 (or 0). Otherwise, it is converted to
			<tt>GL_TRUE</tt>. If <tt>glGetIntegerv</tt> is called, boolean values are returned as
			<tt>GL_TRUE</tt> or <tt>GL_FALSE</tt>, and most floating-point values are rounded to the
			nearest integer value. Floating-point colors and normals, however, are returned with a linear mapping that maps 1.0 to
			the most positive representable integer value, and -1.0 to the most negative representable integer value. If
			<tt>glGetFloatv</tt> or <tt>glGetDoublev</tt> is called, boolean values are returned as
			<tt>GL_TRUE</tt> or <tt>GL_FALSE</tt>, and integer values are converted to floating-point
			values.
		</p><p>
			The following symbolic constants are accepted by <i><tt>pname</tt></i>:
		</p><div class="variablelist"><dl><dt><span class="term"><tt>GL_ACCUM_ALPHA_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of alpha bitplanes in the accumulation buffer.
					</dd><dt><span class="term"><tt>GL_ACCUM_BLUE_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of blue bitplanes in the accumulation buffer.
					</dd><dt><span class="term"><tt>GL_ACCUM_CLEAR_VALUE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the red, green, blue, and alpha values used to clear the
						accumulation buffer. Integer values, if requested, are linearly mapped from the internal floating-point
						representation such that 1.0 returns the most positive representable integer value, and -1.0 returns the
						most negative representable integer value. The initial value is (0, 0, 0, 0). See <a href="glClearAccum.3G.xml"><tt>glClearAccum</tt></a>.
					</dd><dt><span class="term"><tt>GL_ACCUM_GREEN_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of green bitplanes in the accumulation buffer.
					</dd><dt><span class="term"><tt>GL_ACCUM_RED_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of red bitplanes in the accumulation buffer.
					</dd><dt><span class="term"><tt>GL_ACTIVE_TEXTURE_ARB</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single value indicating the active multitexture unit. The initial
						value is <tt>GL_TEXTURE0_ARB</tt>. See <a href="glActiveTextureARB.3G.xml"><tt>glActiveTextureARB</tt></a>.
					</dd><dt><span class="term"><tt>GL_ALIASED_POINT_SIZE_RANGE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values, the smallest and largest supported sizes for aliased
						points.
					</dd><dt><span class="term"><tt>GL_ALIASED_LINE_WIDTH_RANGE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values, the smallest and largest supported widths for aliased
						lines.
					</dd><dt><span class="term"><tt>GL_ALPHA_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the alpha bias factor used during pixel transfers. The
						initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_ALPHA_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of alpha bitplanes in each color buffer.
					</dd><dt><span class="term"><tt>GL_ALPHA_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the alpha scale factor used during pixel transfers. The
						initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_ALPHA_TEST</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether alpha testing of fragments
						is enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glAlphaFunc.3G.xml"><tt>glAlphaFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_ALPHA_TEST_FUNC</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the symbolic name of the alpha test function. The initial
						value is <tt>GL_ALWAYS</tt>. See <a href="glAlphaFunc.3G.xml"><tt>glAlphaFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_ALPHA_TEST_REF</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the reference value for the alpha test. The initial value
						is 0. See <a href="glAlphaFunc.3G.xml"><tt>glAlphaFunc</tt></a>. An integer value, if requested, is linearly
						mapped from the internal floating-point representation such that 1.0 returns the most positive
						representable integer value, and -1.0 returns the most negative representable integer value.
					</dd><dt><span class="term"><tt>GL_ATTRIB_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the depth of the attribute stack. If the stack is empty, 0
						is returned. The initial value is 0. See <a href="glPushAttrib.3G.xml"><tt>glPushAttrib</tt></a>.
					</dd><dt><span class="term"><tt>GL_AUTO_NORMAL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D map evaluation
						automatically generates surface normals. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_AUX_BUFFERS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of auxiliary color buffers. The initial value
						is 0.
					</dd><dt><span class="term"><tt>GL_BLEND</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether blending is enabled. The
						initial value is <tt>GL_FALSE</tt>. See <a href="glBlendFunc.3G.xml"><tt>glBlendFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_BLEND_COLOR</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values, the red, green, blue, and alpha values which are the
						components of the blend color. See <a href="glBlendColor.3G.xml"><tt>glBlendColor</tt></a>.
					</dd><dt><span class="term"><tt>GL_BLEND_DST</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the symbolic constant identifying the destination blend
						function. The initial value is <tt>GL_ZERO</tt>. See <a href="glBlendFunc.3G.xml"><tt>glBlendFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_BLEND_EQUATION</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating whether the blend equation
						is <tt>GL_FUNC_ADD</tt>, <tt>GL_MIN</tt> or <tt>GL_MAX</tt>. See
						<a href="glBlendEquation.3G.xml"><tt>glBlendEquation</tt></a>.
					</dd><dt><span class="term"><tt>GL_BLEND_SRC</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the symbolic constant identifying the source blend
						function. The initial value is <tt>GL_ONE</tt>. See <a href="glBlendFunc.3G.xml"><tt>glBlendFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_BLUE_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the blue bias factor used during pixel transfers. The
						initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_BLUE_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of blue bitplanes in each color buffer.
					</dd><dt><span class="term"><tt>GL_BLUE_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the blue scale factor used during pixel transfers. The
						initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_CLIENT_ACTIVE_TEXTURE_ARB</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single integer value indicating the current client active
						multitexture unit. The initial value is <tt>GL_TEXTURE0_ARB</tt>. See <a href="glClientActiveTextureARB.3G.xml"><tt>glClientActiveTextureARB</tt></a>.
					</dd><dt><span class="term"><tt>GL_CLIENT_ATTRIB_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value indicating the depth of the attribute stack. The initial
						value is 0. See <a href="glPushClientAttrib.3G.xml"><tt>glPushClientAttrib</tt></a>.
					</dd><dt><span class="term"><tt>GL_CLIP_PLANE</tt><i><tt>i</tt></i></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the specified clipping
						plane is enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glClipPlane.3G.xml"><tt>glClipPlane</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_ARRAY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the color array is enabled.
						The initial value is <tt>GL_FALSE</tt>. See <a href="glColorPointer.3G.xml"><tt>glColorPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_ARRAY_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of components per color in the color array. The
						initial value is 4. See <a href="glColorPointer.3G.xml"><tt>glColorPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_ARRAY_STRIDE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte offset between consecutive colors in the color
						array. The initial value is 0. See <a href="glColorPointer.3G.xml"><tt>glColorPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_ARRAY_TYPE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the data type of each component in the color array. The
						initial value is <tt>GL_FLOAT</tt>. See <a href="glColorPointer.3G.xml"><tt>glColorPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_CLEAR_VALUE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the red, green, blue, and alpha values used to clear the
						color buffers. Integer values, if requested, are linearly mapped from the internal floating-point
						representation such that 1.0 returns the most positive representable integer value, and -1.0 returns the
						most negative representable integer value. The initial value is (0, 0, 0, 0). See <a href="glClearColor.3G.xml"><tt>glClearColor</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_LOGIC_OP</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether a fragment's RGBA color
						values are merged into the framebuffer using a logical operation. The initial value is
						<tt>GL_FALSE</tt>. See <a href="glLogicOp.3G.xml"><tt>glLogicOp</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_MATERIAL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether one or more material
						parameters are tracking the current color. The initial value is <tt>GL_FALSE</tt>. See
						<a href="glColorMaterial.3G.xml"><tt>glColorMaterial</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_MATERIAL_FACE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating which materials have a
						parameter that is tracking the current color. The initial value is <tt>GL_FRONT_AND_BACK</tt>.
						See <a href="glColorMaterial.3G.xml"><tt>glColorMaterial</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_MATERIAL_PARAMETER</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating which material parameters
						are tracking the current color. The initial value is <tt>GL_AMBIENT_AND_DIFFUSE</tt>. See
						<a href="glColorMaterial.3G.xml"><tt>glColorMaterial</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_MATRIX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns sixteen values: the color matrix on the top of the color matrix
						stack. Initially this matrix is the identity matrix. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_MATRIX_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported depth of the projection matrix
						stack. The value must be at least 2. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_TABLE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the color table lookup is
						enabled. See <a href="glColorTable.3G.xml"><tt>glColorTable</tt></a>.
					</dd><dt><span class="term"><tt>GL_COLOR_WRITEMASK</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four boolean values: the red, green, blue, and alpha write enables
						for the color buffers. The initial value is (<tt>GL_TRUE</tt>, <tt>GL_TRUE</tt>,
						<tt>GL_TRUE</tt>, <tt>GL_TRUE</tt>). See <a href="glColorMask.3G.xml"><tt>glColorMask</tt></a>.
					</dd><dt><span class="term"><tt>GL_CONVOLUTION_1D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D convolution is enabled.
						The initial value is <tt>GL_FALSE</tt>. See <a href="glConvolutionFilter1D.3G.xml"><tt>glConvolutionFilter1D</tt></a>.
					</dd><dt><span class="term"><tt>GL_CONVOLUTION_2D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D convolution is enabled.
						The initial value is <tt>GL_FALSE</tt>. See <a href="glConvolutionFilter2D.3G.xml"><tt>glConvolutionFilter2D</tt></a>.
					</dd><dt><span class="term"><tt>GL_CULL_FACE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether polygon culling is enabled.
						The initial value is <tt>GL_FALSE</tt>. See <a href="glCullFace.3G.xml"><tt>glCullFace</tt></a>.
					</dd><dt><span class="term"><tt>GL_CULL_FACE_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating which polygon faces are to
						be culled. The initial value is <tt>GL_BACK</tt>. See <a href="glCullFace.3G.xml"><tt>glCullFace</tt></a>.
					</dd><dt><span class="term"><tt>GL_CURRENT_COLOR</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the red, green, blue, and alpha values of the current
						color. Integer values, if requested, are linearly mapped from the internal floating-point representation
						such that 1.0 returns the most positive representable integer value, and -1.0 returns the most negative
						representable integer value. See <tt>glColor</tt>. The initial value is (1,
						1, 1, 1).
					</dd><dt><span class="term"><tt>GL_CURRENT_INDEX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the current color index. The initial value is 1. See
						<tt>glIndex</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_NORMAL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns three values: the <i><tt>x</tt></i>, <i><tt>y</tt></i>,
						and <i><tt>z</tt></i> values of the current normal. Integer values, if requested, are linearly
						mapped from the internal floating-point representation such that 1.0 returns the most positive
						representable integer value, and -1.0 returns the most negative representable integer value. The initial
						value is (0, 0, 1). See <tt>glNormal</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_RASTER_COLOR</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the red, green, blue, and alpha values of the current
						raster position. Integer values, if requested, are linearly mapped from the internal floating-point
						representation such that 1.0 returns the most positive representable integer value, and -1.0 returns the
						most negative representable integer value. The initial value is (1, 1, 1, 1). See <tt>glRasterPos</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_RASTER_DISTANCE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the distance from the eye to the current raster position.
						The initial value is 0. See <tt>glRasterPos</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_RASTER_INDEX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the color index of the current raster position. The
						initial value is 1. See <tt>glRasterPos</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_RASTER_POSITION</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the <i><tt>x</tt></i>, <i><tt>y</tt></i>,
						<i><tt>z</tt></i>, and <i><tt>w</tt></i> components of the current raster position.
						<i><tt>x</tt></i>, <i><tt>y</tt></i>, and <i><tt>z</tt></i> are in window coordinates,
						and <i><tt>w</tt></i> is in clip coordinates. The initial value is (0, 0, 0, 1). See <tt>glRasterPos</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_RASTER_POSITION_VALID</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the current raster position
						is valid. The initial value is <tt>GL_TRUE</tt>. See <tt>glRasterPos</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_RASTER_TEXTURE_COORDS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the <i><tt>s</tt></i>, <i><tt>t</tt></i>,
						<i><tt>r</tt></i>, and <i><tt>q</tt></i> current raster texture coordinates. The initial
						value is (0, 0, 0, 1). See <tt>glRasterPos</tt> and <tt>glTexCoord</tt>.
					</dd><dt><span class="term"><tt>GL_CURRENT_TEXTURE_COORDS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the <i><tt>s</tt></i>, <i><tt>t</tt></i>,
						<i><tt>r</tt></i>, and <i><tt>q</tt></i> current texture coordinates. The initial value is
						(0, 0, 0, 1). See <tt>glTexCoord</tt>.
					</dd><dt><span class="term"><tt>GL_DEPTH_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the depth bias factor used during pixel transfers. The
						initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_DEPTH_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of bitplanes in the depth buffer.
					</dd><dt><span class="term"><tt>GL_DEPTH_CLEAR_VALUE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the value that is used to clear the depth buffer. Integer
						values, if requested, are linearly mapped from the internal floating-point representation such that 1.0
						returns the most positive representable integer value, and -1.0 returns the most negative representable
						integer value. The initial value is 1. See <a href="glClearDepth.3G.xml"><tt>glClearDepth</tt></a>.
					</dd><dt><span class="term"><tt>GL_DEPTH_FUNC</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the symbolic constant that indicates the depth comparison
						function. The initial value is <tt>GL_LESS</tt>. See <a href="glDepthFunc.3G.xml"><tt>glDepthFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_DEPTH_RANGE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values: the near and far mapping limits for the depth buffer.
						Integer values, if requested, are linearly mapped from the internal floating-point representation such that
						1.0 returns the most positive representable integer value, and -1.0 returns the most negative representable
						integer value. The initial value is (0, 1). See <a href="glDepthRange.3G.xml"><tt>glDepthRange</tt></a>.
					</dd><dt><span class="term"><tt>GL_DEPTH_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the depth scale factor used during pixel transfers. The
						initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_DEPTH_TEST</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether depth testing of fragments
						is enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glDepthFunc.3G.xml"><tt>glDepthFunc</tt></a> and <a href="glDepthRange.3G.xml"><tt>glDepthRange</tt></a>.
					</dd><dt><span class="term"><tt>GL_DEPTH_WRITEMASK</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating if the depth buffer is enabled for
						writing. The initial value is <tt>GL_TRUE</tt>. See <a href="glDepthMask.3G.xml"><tt>glDepthMask</tt></a>.
					</dd><dt><span class="term"><tt>GL_DITHER</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether dithering of fragment
						colors and indices is enabled. The initial value is <tt>GL_TRUE</tt>.
					</dd><dt><span class="term"><tt>GL_DOUBLEBUFFER</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether double buffering is
						supported.
					</dd><dt><span class="term"><tt>GL_DRAW_BUFFER</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating which buffers are being
						drawn to. See <a href="glDrawBuffer.3G.xml"><tt>glDrawBuffer</tt></a>. The initial value is
						<tt>GL_BACK</tt> if there are back buffers, otherwise it is <tt>GL_FRONT</tt>.
					</dd><dt><span class="term"><tt>GL_EDGE_FLAG</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the current edge flag is
						<tt>GL_TRUE</tt> or <tt>GL_FALSE</tt>. The initial value is
						<tt>GL_TRUE</tt>. See <a href="glEdgeFlag.3G.xml"><tt>glEdgeFlag</tt></a>.
					</dd><dt><span class="term"><tt>GL_EDGE_FLAG_ARRAY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the edge flag array is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glEdgeFlagPointer.3G.xml"><tt>glEdgeFlagPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_EDGE_FLAG_ARRAY_STRIDE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte offset between consecutive edge flags in the edge
						flag array. The initial value is 0. See <a href="glEdgeFlagPointer.3G.xml"><tt>glEdgeFlagPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_FEEDBACK_BUFFER_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the feedback buffer. See <a href="glFeedbackBuffer.3G.xml"><tt>glFeedbackBuffer</tt></a>.
					</dd><dt><span class="term"><tt>GL_FEEDBACK_BUFFER_TYPE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the type of the feedback buffer. See <a href="glFeedbackBuffer.3G.xml"><tt>glFeedbackBuffer</tt></a>.
					</dd><dt><span class="term"><tt>GL_FOG</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether fogging is enabled. The
						initial value is <tt>GL_FALSE</tt>. See <tt>glFog</tt>.
					</dd><dt><span class="term"><tt>GL_FOG_COLOR</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the red, green, blue, and alpha components of the fog
						color. Integer values, if requested, are linearly mapped from the internal floating-point representation
						such that 1.0 returns the most positive representable integer value, and -1.0 returns the most negative
						representable integer value. The initial value is (0, 0, 0, 0). See <tt>glFog</tt>.
					</dd><dt><span class="term"><tt>GL_FOG_DENSITY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the fog density parameter. The initial value is 1. See
						<tt>glFog</tt>.
					</dd><dt><span class="term"><tt>GL_FOG_END</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the end factor for the linear fog equation. The initial
						value is 1. See <tt>glFog</tt>.
					</dd><dt><span class="term"><tt>GL_FOG_HINT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating the mode of the fog hint.
						The initial value is <tt>GL_DONT_CARE</tt>. See <a href="glHint.3G.xml"><tt>glHint</tt></a>.
					</dd><dt><span class="term"><tt>GL_FOG_INDEX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the fog color index. The initial value is 0. See <tt>glFog</tt>.
					</dd><dt><span class="term"><tt>GL_FOG_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating which fog equation is
						selected. The initial value is <tt>GL_EXP</tt>. See <tt>glFog</tt>.
					</dd><dt><span class="term"><tt>GL_FOG_START</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the start factor for the linear fog equation. The initial
						value is 0. See <tt>glFog</tt>.
					</dd><dt><span class="term"><tt>GL_FRONT_FACE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating whether clockwise or
						counterclockwise polygon winding is treated as front-facing. The initial value is
						<tt>GL_CCW</tt>. See <a href="glFrontFace.3G.xml"><tt>glFrontFace</tt></a>.
					</dd><dt><span class="term"><tt>GL_GREEN_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the green bias factor used during pixel transfers. The
						initial value is 0.
					</dd><dt><span class="term"><tt>GL_GREEN_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of green bitplanes in each color buffer.
					</dd><dt><span class="term"><tt>GL_GREEN_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the green scale factor used during pixel transfers. The
						initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_HISTOGRAM</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether histogram is enabled. The
						initial value is <tt>GL_FALSE</tt>. See <a href="glHistogram.3G.xml"><tt>glHistogram</tt></a>.
					</dd><dt><span class="term"><tt>GL_INDEX_ARRAY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the color index array is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glIndexPointer.3G.xml"><tt>glIndexPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_INDEX_ARRAY_STRIDE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte offset between consecutive color indexes in the
						color index array. The initial value is 0. See <a href="glIndexPointer.3G.xml"><tt>glIndexPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_INDEX_ARRAY_TYPE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the data type of indexes in the color index array. The
						initial value is <tt>GL_FLOAT</tt>. See <a href="glIndexPointer.3G.xml"><tt>glIndexPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_INDEX_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of bitplanes in each color index buffer.
					</dd><dt><span class="term"><tt>GL_INDEX_CLEAR_VALUE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the color index used to clear the color index buffers. The
						initial value is 0. See <a href="glClearIndex.3G.xml"><tt>glClearIndex</tt></a>.
					</dd><dt><span class="term"><tt>GL_INDEX_LOGIC_OP</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether a fragment's index values
						are merged into the framebuffer using a logical operation. The initial value is
						<tt>GL_FALSE</tt>. See <a href="glLogicOp.3G.xml"><tt>glLogicOp</tt></a>.
					</dd><dt><span class="term"><tt>GL_INDEX_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the GL is in color index
						mode (<tt>GL_TRUE</tt>) or RGBA mode (<tt>GL_FALSE</tt>).
					</dd><dt><span class="term"><tt>GL_INDEX_OFFSET</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the offset added to color and stencil indices during pixel
						transfers. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_INDEX_SHIFT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the amount that color and stencil indices are shifted
						during pixel transfers. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_INDEX_WRITEMASK</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a mask indicating which bitplanes of each color index
						buffer can be written. The initial value is all 1's. See <a href="glIndexMask.3G.xml"><tt>glIndexMask</tt></a>.
					</dd><dt><span class="term"><tt>GL_LIGHT</tt><i><tt>i</tt></i></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the specified light is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <tt>glLight</tt> and <tt>glLightModel</tt>.
					</dd><dt><span class="term"><tt>GL_LIGHTING</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether lighting is enabled. The
						initial value is <tt>GL_FALSE</tt>. See <tt>glLightModel</tt>.
					</dd><dt><span class="term"><tt>GL_LIGHT_MODEL_AMBIENT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the red, green, blue, and alpha components of the
						ambient intensity of the entire scene. Integer values, if requested, are linearly mapped from the internal
						floating-point representation such that 1.0 returns the most positive representable integer value, and -1.0
						returns the most negative representable integer value. The initial value is (0.2, 0.2, 0.2, 1.0). See
						<tt>glLightModel</tt>.
					</dd><dt><span class="term"><tt>GL_LIGHT_MODEL_COLOR_CONTROL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns single enumerated value indicating whether specular reflection
						calculations are separated from normal lighting computations. The initial value is
						<tt>GL_SINGLE_COLOR</tt>.
					</dd><dt><span class="term"><tt>GL_LIGHT_MODEL_LOCAL_VIEWER</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether specular reflection
						calculations treat the viewer as being local to the scene. The initial value is
						<tt>GL_FALSE</tt>. See <tt>glLightModel</tt>.
					</dd><dt><span class="term"><tt>GL_LIGHT_MODEL_TWO_SIDE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether separate materials are used
						to compute lighting for front- and back-facing polygons. The initial value is
						<tt>GL_FALSE</tt>. See <tt>glLightModel</tt>.
					</dd><dt><span class="term"><tt>GL_LINE_SMOOTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether antialiasing of lines is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glLineWidth.3G.xml"><tt>glLineWidth</tt></a>.
					</dd><dt><span class="term"><tt>GL_LINE_SMOOTH_HINT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating the mode of the line
						antialiasing hint. The initial value is <tt>GL_DONT_CARE</tt>. See <a href="glHint.3G.xml"><tt>glHint</tt></a>.
					</dd><dt><span class="term"><tt>GL_LINE_STIPPLE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether stippling of lines is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glLineStipple.3G.xml"><tt>glLineStipple</tt></a>.
					</dd><dt><span class="term"><tt>GL_LINE_STIPPLE_PATTERN</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the 16-bit line stipple pattern. The initial value is all
						1's. See <a href="glLineStipple.3G.xml"><tt>glLineStipple</tt></a>.
					</dd><dt><span class="term"><tt>GL_LINE_STIPPLE_REPEAT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the line stipple repeat factor. The initial value is 1.
						See <a href="glLineStipple.3G.xml"><tt>glLineStipple</tt></a>.
					</dd><dt><span class="term"><tt>GL_LINE_WIDTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the line width as specified with <a href="glLineWidth.3G.xml"><tt>glLineWidth</tt></a>. The initial value is 1.
					</dd><dt><span class="term"><tt>GL_LINE_WIDTH_GRANULARITY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the width difference between adjacent supported widths for
						antialiased lines. See <a href="glLineWidth.3G.xml"><tt>glLineWidth</tt></a>.
					</dd><dt><span class="term"><tt>GL_LINE_WIDTH_RANGE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values: the smallest and largest supported widths for antialiased
						lines. See <a href="glLineWidth.3G.xml"><tt>glLineWidth</tt></a>.
					</dd><dt><span class="term"><tt>GL_LIST_BASE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the base offset added to all names in arrays presented to
						<a href="glCallLists.3G.xml"><tt>glCallLists</tt></a>. The initial value is 0. See <a href="glListBase.3G.xml"><tt>glListBase</tt></a>.
					</dd><dt><span class="term"><tt>GL_LIST_INDEX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the name of the display list currently under construction.
						0 is returned if no display list is currently under construction. The initial value is 0. See <a href="glNewList.3G.xml"><tt>glNewList</tt></a>.
					</dd><dt><span class="term"><tt>GL_LIST_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating the construction mode of
						the display list currently under construction. The initial value is 0. See <a href="glNewList.3G.xml"><tt>glNewList</tt></a>.
					</dd><dt><span class="term"><tt>GL_LOGIC_OP_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating the selected logic
						operation mode. The initial value is <tt>GL_COPY</tt>. See <a href="glLogicOp.3G.xml"><tt>glLogicOp</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAP1_COLOR_4</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates
						colors. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_GRID_DOMAIN</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values: the endpoints of the 1D map's grid domain. The initial
						value is (0, 1). See <tt>glMapGrid</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_GRID_SEGMENTS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of partitions in the 1D map's grid domain. The
						initial value is 1. See <tt>glMapGrid</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_INDEX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates
						color indices. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_NORMAL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates
						normals. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_TEXTURE_COORD_1</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates 1D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_TEXTURE_COORD_2</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates 2D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_TEXTURE_COORD_3</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates 3D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_TEXTURE_COORD_4</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates 4D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_VERTEX_3</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates 3D
						vertex coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP1_VERTEX_4</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D evaluation generates 4D
						vertex coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap1</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_COLOR_4</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates
						colors. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_GRID_DOMAIN</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the endpoints of the 2D map's <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>i</mml:mi>
							</mml:math> and <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>j</mml:mi>
							</mml:math> grid domains. The initial value is (0,1; 0,1). See <tt>glMapGrid</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_GRID_SEGMENTS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values: the number of partitions in the 2D map's <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>i</mml:mi>
							</mml:math> and <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>j</mml:mi>
							</mml:math> grid domains. The initial value is (1,1). See <tt>glMapGrid</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_INDEX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates
						color indices. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_NORMAL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates
						normals. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_TEXTURE_COORD_1</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates 1D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_TEXTURE_COORD_2</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates 2D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_TEXTURE_COORD_3</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates 3D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_TEXTURE_COORD_4</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates 4D
						texture coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_VERTEX_3</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates 3D
						vertex coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP2_VERTEX_4</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D evaluation generates 4D
						vertex coordinates. The initial value is <tt>GL_FALSE</tt>. See <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAP_COLOR</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating if colors and color indices are to
						be replaced by table lookup during pixel transfers. The initial value is <tt>GL_FALSE</tt>. See
						<tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_MAP_STENCIL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating if stencil indices are to be
						replaced by table lookup during pixel transfers. The initial value is <tt>GL_FALSE</tt>. See
						<tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_MATRIX_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating which matrix stack is
						currently the target of all matrix operations. The initial value is <tt>GL_MODELVIEW</tt>. See
						<a href="glMatrixMode.3G.xml"><tt>glMatrixMode</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_3D_TEXTURE_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a rough estimate of the largest 3D texture that the GL can
						handle. If the GL version is 1.2 or greater, use <tt>GL_PROXY_TEXTURE_3D</tt> to determine if a
						texture is too large. See <a href="glTexImage3D.3G.xml"><tt>glTexImage3D</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_CLIENT_ATTRIB_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value indicating the maximum supported depth of the client
						attribute stack. See <a href="glPushClientAttrib.3G.xml"><tt>glPushClientAttrib</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_ATTRIB_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported depth of the attribute stack. The
						value must be at least 16. See <a href="glPushAttrib.3G.xml"><tt>glPushAttrib</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_CLIP_PLANES</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum number of application-defined clipping planes.
						The value must be at least 6. See <a href="glClipPlane.3G.xml"><tt>glClipPlane</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_COLOR_MATRIX_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported depth of the color matrix stack. The
						value must be at least 2. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_ELEMENTS_INDICES</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the recommended maximum number of vertex array indices.
						See <a href="glDrawRangeElements.3G.xml"><tt>glDrawRangeElements</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_ELEMENTS_VERTICES</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the recommended maximum number of vertex array vertices.
						See <a href="glDrawRangeElements.3G.xml"><tt>glDrawRangeElements</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_EVAL_ORDER</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum equation order supported by 1D and 2D
						evaluators. The value must be at least 8. See <tt>glMap1</tt> and <tt>glMap2</tt>.
					</dd><dt><span class="term"><tt>GL_MAX_LIGHTS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum number of lights. The value must be at least
						8. See <tt>glLight</tt>.
					</dd><dt><span class="term"><tt>GL_MAX_LIST_NESTING</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum recursion depth allowed during display-list
						traversal. The value must be at least 64. See <a href="glCallList.3G.xml"><tt>glCallList</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_MODELVIEW_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported depth of the modelview matrix stack.
						The value must be at least 32. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_NAME_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported depth of the selection name stack.
						The value must be at least 64. See <a href="glPushName.3G.xml"><tt>glPushName</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_PIXEL_MAP_TABLE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported size of a <tt>glPixelMap</tt> lookup table. The value must be at least 32. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_MAX_PROJECTION_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported depth of the projection matrix
						stack. The value must be at least 2. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_TEXTURE_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value. The value gives a rough estimate of the largest texture
						that the GL can handle. If the GL version is 1.1 or greater, use <tt>GL_PROXY_TEXTURE_1D</tt>
						or <tt>GL_PROXY_TEXTURE_2D</tt> to determine if a texture is too large. See <a href="glTexImage1D.3G.xml"><tt>glTexImage1D</tt></a> and <a href="glTexImage2D.3G.xml"><tt>glTexImage2D</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_TEXTURE_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the maximum supported depth of the texture matrix stack.
						The value must be at least 2. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_TEXTURE_UNITS_ARB</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single value indicating the number of texture units supported. The
						value must be at least 1. See <a href="glActiveTextureARB.3G.xml"><tt>glActiveTextureARB</tt></a>.
					</dd><dt><span class="term"><tt>GL_MAX_VIEWPORT_DIMS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values: the maximum supported width and height of the viewport.
						These must be at least as large as the visible dimensions of the display being rendered to. See <a href="glViewport.3G.xml"><tt>glViewport</tt></a>.
					</dd><dt><span class="term"><tt>GL_MINMAX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether pixel minmax values are
						computed. The initial value is <tt>GL_FALSE</tt>. See <a href="glMinmax.3G.xml"><tt>glMinmax</tt></a>.
					</dd><dt><span class="term"><tt>GL_MODELVIEW_MATRIX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns sixteen values: the modelview matrix on the top of the modelview
						matrix stack. Initially this matrix is the identity matrix. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_MODELVIEW_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of matrices on the modelview matrix stack. The
						initial value is 1. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_NAME_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of names on the selection name stack. The
						initial value is 0. See <a href="glPushName.3G.xml"><tt>glPushName</tt></a>.
					</dd><dt><span class="term"><tt>GL_NORMAL_ARRAY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value, indicating whether the normal array is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glNormalPointer.3G.xml"><tt>glNormalPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_NORMAL_ARRAY_STRIDE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte offset between consecutive normals in the normal
						array. The initial value is 0. See <a href="glNormalPointer.3G.xml"><tt>glNormalPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_NORMAL_ARRAY_TYPE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the data type of each coordinate in the normal array. The
						initial value is <tt>GL_FLOAT</tt>. See <a href="glNormalPointer.3G.xml"><tt>glNormalPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_NORMALIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether normals are automatically
						scaled to unit length after they have been transformed to eye coordinates. The initial value is
						<tt>GL_FALSE</tt>. See <tt>glNormal</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_ALIGNMENT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte alignment used for writing pixel data to memory.
						The initial value is 4. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_IMAGE_HEIGHT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the image height used for writing pixel data to memory.
						The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_LSB_FIRST</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether single-bit pixels being
						written to memory are written first to the least significant bit of each unsigned byte. The initial value
						is <tt>GL_FALSE</tt>. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_ROW_LENGTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the row length used for writing pixel data to memory. The
						initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_SKIP_IMAGES</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of pixel images skipped before the first pixel
						is written into memory. The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_SKIP_PIXELS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of pixel locations skipped before the first
						pixel is written into memory. The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_SKIP_ROWS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of rows of pixel locations skipped before the
						first pixel is written into memory. The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PACK_SWAP_BYTES</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the bytes of two-byte and
						four-byte pixel indices and components are swapped before being written to memory. The initial value is
						<tt>GL_FALSE</tt>. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_PERSPECTIVE_CORRECTION_HINT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating the mode of the perspective
						correction hint. The initial value is <tt>GL_DONT_CARE</tt>. See <a href="glHint.3G.xml"><tt>glHint</tt></a>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_A_TO_A_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the alpha-to-alpha pixel translation table.
						The initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_B_TO_B_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the blue-to-blue pixel translation table. The
						initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_G_TO_G_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the green-to-green pixel translation table.
						The initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_I_TO_A_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the index-to-alpha pixel translation table.
						The initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_I_TO_B_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the index-to-blue pixel translation table. The
						initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_I_TO_G_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the index-to-green pixel translation table.
						The initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_I_TO_I_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the index-to-index pixel translation table.
						The initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_I_TO_R_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the index-to-red pixel translation table. The
						initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_R_TO_R_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the red-to-red pixel translation table. The
						initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_PIXEL_MAP_S_TO_S_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size of the stencil-to-stencil pixel translation
						table. The initial value is 1. See <tt>glPixelMap</tt>.
					</dd><dt><span class="term"><tt>GL_POINT_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the point size as specified by <a href="glPointSize.3G.xml"><tt>glPointSize</tt></a>. The initial value is 1.
					</dd><dt><span class="term"><tt>GL_POINT_SIZE_GRANULARITY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the size difference between adjacent supported sizes for
						antialiased points. See <a href="glPointSize.3G.xml"><tt>glPointSize</tt></a>.
					</dd><dt><span class="term"><tt>GL_POINT_SIZE_RANGE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values: the smallest and largest supported sizes for antialiased
						points. The smallest size must be at most 1, and the largest size must be at least 1. See <a href="glPointSize.3G.xml"><tt>glPointSize</tt></a>.
					</dd><dt><span class="term"><tt>GL_POINT_SMOOTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether antialiasing of points is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glPointSize.3G.xml"><tt>glPointSize</tt></a>.
					</dd><dt><span class="term"><tt>GL_POINT_SMOOTH_HINT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating the mode of the point
						antialiasing hint. The initial value is <tt>GL_DONT_CARE</tt>. See <a href="glHint.3G.xml"><tt>glHint</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values: symbolic constants indicating whether front-facing and
						back-facing polygons are rasterized as points, lines, or filled polygons. The initial value is
						<tt>GL_FILL</tt>. See <a href="glPolygonMode.3G.xml"><tt>glPolygonMode</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_OFFSET_FACTOR</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the scaling factor used to determine the variable offset
						that is added to the depth value of each fragment generated when a polygon is rasterized. The initial value
						is 0. See <a href="glPolygonOffset.3G.xml"><tt>glPolygonOffset</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_OFFSET_UNITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value. This value is multiplied by an implementation-specific
						value and then added to the depth value of each fragment generated when a polygon is rasterized. The
						initial value is 0. See <a href="glPolygonOffset.3G.xml"><tt>glPolygonOffset</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_OFFSET_FILL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether polygon offset is enabled
						for polygons in fill mode. The initial value is <tt>GL_FALSE</tt>. See <a href="glPolygonOffset.3G.xml"><tt>glPolygonOffset</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_OFFSET_LINE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether polygon offset is enabled
						for polygons in line mode. The initial value is <tt>GL_FALSE</tt>. See <a href="glPolygonOffset.3G.xml"><tt>glPolygonOffset</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_OFFSET_POINT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether polygon offset is enabled
						for polygons in point mode. The initial value is <tt>GL_FALSE</tt>. See <a href="glPolygonOffset.3G.xml"><tt>glPolygonOffset</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_SMOOTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether antialiasing of polygons is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glPolygonMode.3G.xml"><tt>glPolygonMode</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_SMOOTH_HINT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating the mode of the polygon
						antialiasing hint. The initial value is <tt>GL_DONT_CARE</tt>. See <a href="glHint.3G.xml"><tt>glHint</tt></a>.
					</dd><dt><span class="term"><tt>GL_POLYGON_STIPPLE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether polygon stippling is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glPolygonStipple.3G.xml"><tt>glPolygonStipple</tt></a>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_COLOR_TABLE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether post color matrix
						transformation lookup is enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glColorTable.3G.xml"><tt>glColorTable</tt></a>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_RED_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the red bias factor applied to RGBA fragments after color
						matrix transformations. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_GREEN_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the green bias factor applied to RGBA fragments after
						color matrix transformations. The initial value is 0. See <tt>glPixelTransfer</tt>
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_BLUE_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the blue bias factor applied to RGBA fragments after color
						matrix transformations. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_ALPHA_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the alpha bias factor applied to RGBA fragments after
						color matrix transformations. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_RED_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the red scale factor applied to RGBA fragments after color
						matrix transformations. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_GREEN_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the green scale factor applied to RGBA fragments after
						color matrix transformations. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_BLUE_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the blue scale factor applied to RGBA fragments after
						color matrix transformations. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_COLOR_MATRIX_ALPHA_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the alpha scale factor applied to RGBA fragments after
						color matrix transformations. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_COLOR_TABLE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether post convolution lookup is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glColorTable.3G.xml"><tt>glColorTable</tt></a>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_RED_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the red bias factor applied to RGBA fragments after
						convolution. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_GREEN_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the green bias factor applied to RGBA fragments after
						convolution. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_BLUE_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the blue bias factor applied to RGBA fragments after
						convolution. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_ALPHA_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the alpha bias factor applied to RGBA fragments after
						convolution. The initial value is 0. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_RED_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the red scale factor applied to RGBA fragments after
						convolution. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_GREEN_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the green scale factor applied to RGBA fragments after
						convolution. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_BLUE_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the blue scale factor applied to RGBA fragments after
						convolution. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_POST_CONVOLUTION_ALPHA_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the alpha scale factor applied to RGBA fragments after
						convolution. The initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_PROJECTION_MATRIX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns sixteen values: the projection matrix on the top of the projection
						matrix stack. Initially this matrix is the identity matrix. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_PROJECTION_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of matrices on the projection matrix stack. The
						initial value is 1. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_READ_BUFFER</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating which color buffer is
						selected for reading. The initial value is <tt>GL_BACK</tt> if there is a back buffer,
						otherwise it is <tt>GL_FRONT</tt>. See <a href="glReadPixels.3G.xml"><tt>glReadPixels</tt></a>
						and <a href="glAccum.3G.xml"><tt>glAccum</tt></a>.
					</dd><dt><span class="term"><tt>GL_RED_BIAS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the red bias factor used during pixel transfers. The
						initial value is 0.
					</dd><dt><span class="term"><tt>GL_RED_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of red bitplanes in each color buffer.
					</dd><dt><span class="term"><tt>GL_RED_SCALE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the red scale factor used during pixel transfers. The
						initial value is 1. See <tt>glPixelTransfer</tt>.
					</dd><dt><span class="term"><tt>GL_RENDER_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating whether the GL is in
						render, select, or feedback mode. The initial value is <tt>GL_RENDER</tt>. See <a href="glRenderMode.3G.xml"><tt>glRenderMode</tt></a>.
					</dd><dt><span class="term"><tt>GL_RESCALE_NORMAL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns single boolean value indicating whether normal rescaling is enabled.
						See <a href="glEnable.3G.xml"><tt>glEnable</tt></a>.
					</dd><dt><span class="term"><tt>GL_RGBA_MODE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the GL is in RGBA mode
						(true) or color index mode (false). See <tt>glColor</tt>.
					</dd><dt><span class="term"><tt>GL_SCISSOR_BOX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>x</mml:mi>
							</mml:math> and <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>y</mml:mi>
							</mml:math> window coordinates of the scissor box, followed by its width and height. Initially the
						<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>x</mml:mi>
							</mml:math> and <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>y</mml:mi>
							</mml:math> window coordinates are both 0 and the width and height are set to the size of the window.
						See <a href="glScissor.3G.xml"><tt>glScissor</tt></a>.
					</dd><dt><span class="term"><tt>GL_SCISSOR_TEST</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether scissoring is enabled. The
						initial value is <tt>GL_FALSE</tt>. See <a href="glScissor.3G.xml"><tt>glScissor</tt></a>.
					</dd><dt><span class="term"><tt>GL_SELECTION_BUFFER_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> return one value, the size of the selection buffer. See <a href="glSelectBuffer.3G.xml"><tt>glSelectBuffer</tt></a>.
					</dd><dt><span class="term"><tt>GL_SEPARABLE_2D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D separable convolution is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glSeparableFilter2D.3G.xml"><tt>glSeparableFilter2D</tt></a>.
					</dd><dt><span class="term"><tt>GL_SHADE_MODEL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating whether the shading mode is
						flat or smooth. The initial value is <tt>GL_SMOOTH</tt>. See <a href="glShadeModel.3G.xml"><tt>glShadeModel</tt></a>.
					</dd><dt><span class="term"><tt>GL_SMOOTH_LINE_WIDTH_RANGE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values, the smallest and largest supported widths for antialiased
						lines. See <a href="glLineWidth.3G.xml"><tt>glLineWidth</tt></a>.
					</dd><dt><span class="term"><tt>GL_SMOOTH_LINE_WIDTH_GRANULARITY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the granularity of widths for antialiased lines. See
						<a href="glLineWidth.3G.xml"><tt>glLineWidth</tt></a>.
					</dd><dt><span class="term"><tt>GL_SMOOTH_POINT_SIZE_RANGE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns two values, the smallest and largest supported widths for antialiased
						points. See <a href="glPointSize.3G.xml"><tt>glPointSize</tt></a>.
					</dd><dt><span class="term"><tt>GL_SMOOTH_POINT_SIZE_GRANULARITY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the granularity of sizes for antialiased points. See
						<a href="glPointSize.3G.xml"><tt>glPointSize</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of bitplanes in the stencil buffer.
					</dd><dt><span class="term"><tt>GL_STENCIL_CLEAR_VALUE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the index to which the stencil bitplanes are cleared. The
						initial value is 0. See <a href="glClearStencil.3G.xml"><tt>glClearStencil</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_FAIL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating what action is taken when
						the stencil test fails. The initial value is <tt>GL_KEEP</tt>. See <a href="glStencilOp.3G.xml"><tt>glStencilOp</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_FUNC</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating what function is used to
						compare the stencil reference value with the stencil buffer value. The initial value is
						<tt>GL_ALWAYS</tt>. See <a href="glStencilFunc.3G.xml"><tt>glStencilFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_PASS_DEPTH_FAIL</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating what action is taken when
						the stencil test passes, but the depth test fails. The initial value is <tt>GL_KEEP</tt>. See
						<a href="glStencilOp.3G.xml"><tt>glStencilOp</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_PASS_DEPTH_PASS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, a symbolic constant indicating what action is taken when
						the stencil test passes and the depth test passes. The initial value is <tt>GL_KEEP</tt>. See
						<a href="glStencilOp.3G.xml"><tt>glStencilOp</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_REF</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the reference value that is compared with the contents of
						the stencil buffer. The initial value is 0. See <a href="glStencilFunc.3G.xml"><tt>glStencilFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_TEST</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether stencil testing of
						fragments is enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glStencilFunc.3G.xml"><tt>glStencilFunc</tt></a> and <a href="glStencilOp.3G.xml"><tt>glStencilOp</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_VALUE_MASK</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the mask that is used to mask both the stencil reference
						value and the stencil buffer value before they are compared. The initial value is all 1's. See <a href="glStencilFunc.3G.xml"><tt>glStencilFunc</tt></a>.
					</dd><dt><span class="term"><tt>GL_STENCIL_WRITEMASK</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the mask that controls writing of the stencil bitplanes.
						The initial value is all 1's. See <a href="glStencilMask.3G.xml"><tt>glStencilMask</tt></a>.
					</dd><dt><span class="term"><tt>GL_STEREO</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether stereo buffers (left and
						right) are supported.
					</dd><dt><span class="term"><tt>GL_SUBPIXEL_BITS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, an estimate of the number of bits of subpixel resolution
						that are used to position rasterized geometry in window coordinates. The initial value is 4.
					</dd><dt><span class="term"><tt>GL_TEXTURE_1D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 1D texture mapping is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glTexImage1D.3G.xml"><tt>glTexImage1D</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_BINDING_1D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single value, the name of the texture currently bound to the target
						<tt>GL_TEXTURE_1D</tt>. The initial value is 0. See <a href="glBindTexture.3G.xml"><tt>glBindTexture</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_2D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 2D texture mapping is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glTexImage2D.3G.xml"><tt>glTexImage2D</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_BINDING_2D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single value, the name of the texture currently bound to the target
						<tt>GL_TEXTURE_2D</tt>. The initial value is 0. See <a href="glBindTexture.3G.xml"><tt>glBindTexture</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_3D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether 3D texture mapping is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glTexImage3D.3G.xml"><tt>glTexImage3D</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_BINDING_3D</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single value, the name of the texture currently bound to the target
						<tt>GL_TEXTURE_3D</tt>. The initial value is 0. See <a href="glBindTexture.3G.xml"><tt>glBindTexture</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_COORD_ARRAY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the texture coordinate
						array is enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glTexCoordPointer.3G.xml"><tt>glTexCoordPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_COORD_ARRAY_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of coordinates per element in the texture
						coordinate array. The initial value is 4. See <a href="glTexCoordPointer.3G.xml"><tt>glTexCoordPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_COORD_ARRAY_STRIDE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte offset between consecutive elements in the
						texture coordinate array. The initial value is 0. See <a href="glTexCoordPointer.3G.xml"><tt>glTexCoordPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_COORD_ARRAY_TYPE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the data type of the coordinates in the texture coordinate
						array. The initial value is <tt>GL_FLOAT</tt>. See <a href="glTexCoordPointer.3G.xml"><tt>glTexCoordPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_GEN_Q</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether automatic generation of the
						<i><tt>q</tt></i> texture coordinate is enabled. The initial value is <tt>GL_FALSE</tt>.
						See <tt>glTexGen</tt>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_GEN_R</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether automatic generation of the
						<i><tt>r</tt></i> texture coordinate is enabled. The initial value is <tt>GL_FALSE</tt>.
						See <tt>glTexGen</tt>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_GEN_S</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether automatic generation of the
						<i><tt>S</tt></i> texture coordinate is enabled. The initial value is <tt>GL_FALSE</tt>.
						See <tt>glTexGen</tt>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_GEN_T</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether automatic generation of the
						T texture coordinate is enabled. The initial value is <tt>GL_FALSE</tt>. See <tt>glTexGen</tt>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_MATRIX</tt></span></dt><dd>
						<i><tt>params</tt></i> returns sixteen values: the texture matrix on the top of the texture matrix
						stack. Initially this matrix is the identity matrix. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_TEXTURE_STACK_DEPTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of matrices on the texture matrix stack. The
						initial value is 1. See <a href="glPushMatrix.3G.xml"><tt>glPushMatrix</tt></a>.
					</dd><dt><span class="term"><tt>GL_UNPACK_ALIGNMENT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte alignment used for reading pixel data from
						memory. The initial value is 4. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_UNPACK_IMAGE_HEIGHT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the image height used for reading pixel data from memory.
						The initial is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_UNPACK_LSB_FIRST</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether single-bit pixels being
						read from memory are read first from the least significant bit of each unsigned byte. The initial value is
						<tt>GL_FALSE</tt>. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_UNPACK_ROW_LENGTH</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the row length used for reading pixel data from memory.
						The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_UNPACK_SKIP_IMAGES</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of pixel images skipped before the first pixel
						is read from memory. The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_UNPACK_SKIP_PIXELS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of pixel locations skipped before the first
						pixel is read from memory. The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_UNPACK_SKIP_ROWS</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of rows of pixel locations skipped before the
						first pixel is read from memory. The initial value is 0. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_UNPACK_SWAP_BYTES</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the bytes of two-byte and
						four-byte pixel indices and components are swapped after being read from memory. The initial value is
						<tt>GL_FALSE</tt>. See <tt>glPixelStore</tt>.
					</dd><dt><span class="term"><tt>GL_VERTEX_ARRAY</tt></span></dt><dd>
						<i><tt>params</tt></i> returns a single boolean value indicating whether the vertex array is
						enabled. The initial value is <tt>GL_FALSE</tt>. See <a href="glVertexPointer.3G.xml"><tt>glVertexPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_VERTEX_ARRAY_SIZE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the number of coordinates per vertex in the vertex array.
						The initial value is 4. See <a href="glVertexPointer.3G.xml"><tt>glVertexPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_VERTEX_ARRAY_STRIDE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the byte offset between consecutive vertexes in the vertex
						array. The initial value is 0. See <a href="glVertexPointer.3G.xml"><tt>glVertexPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_VERTEX_ARRAY_TYPE</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the data type of each coordinate in the vertex array. The
						initial value is <tt>GL_FLOAT</tt>. See <a href="glVertexPointer.3G.xml"><tt>glVertexPointer</tt></a>.
					</dd><dt><span class="term"><tt>GL_VIEWPORT</tt></span></dt><dd>
						<i><tt>params</tt></i> returns four values: the <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>x</mml:mi>
							</mml:math> and <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>y</mml:mi>
							</mml:math> window coordinates of the viewport, followed by its width and height. Initially the
						<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>x</mml:mi>
							</mml:math> and <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>y</mml:mi>
							</mml:math> window coordinates are both set to 0, and the width and height are set to the width and
						height of the window into which the GL will do its rendering. See <a href="glViewport.3G.xml"><tt>glViewport</tt></a>.
					</dd><dt><span class="term"><tt>GL_ZOOM_X</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>x</mml:mi>
							</mml:math> pixel zoom factor. The initial value is 1. See <a href="glPixelZoom.3G.xml"><tt>glPixelZoom</tt></a>.
					</dd><dt><span class="term"><tt>GL_ZOOM_Y</tt></span></dt><dd>
						<i><tt>params</tt></i> returns one value, the <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
								<mml:mi>y</mml:mi>
							</mml:math> pixel zoom factor. The initial value is 1. See <a href="glPixelZoom.3G.xml"><tt>glPixelZoom</tt></a>.
					</dd></dl></div><p>
			Many of the boolean parameters can also be queried more easily using <a href="glIsEnabled.3G.xml"><tt>glIsEnabled</tt></a>.
		</p></div><div class="refsect1" lang="en"><a name="glGet.3G-notes"/><h2>Notes</h2><p>
			<tt>GL_COLOR_LOGIC_OP</tt>, <tt>GL_COLOR_ARRAY</tt>, <tt>GL_COLOR_ARRAY_SIZE</tt>,
			<tt>GL_COLOR_ARRAY_STRIDE</tt>, <tt>GL_COLOR_ARRAY_TYPE</tt>,
			<tt>GL_EDGE_FLAG_ARRAY</tt>, <tt>GL_EDGE_FLAG_ARRAY_STRIDE</tt>,
			<tt>GL_INDEX_ARRAY</tt>, <tt>GL_INDEX_ARRAY_STRIDE</tt>,
			<tt>GL_INDEX_ARRAY_TYPE</tt>, <tt>GL_INDEX_LOGIC_OP</tt>, <tt>GL_NORMAL_ARRAY</tt>,
			<tt>GL_NORMAL_ARRAY_STRIDE</tt>, <tt>GL_NORMAL_ARRAY_TYPE</tt>,
			<tt>GL_POLYGON_OFFSET_UNITS</tt>, <tt>GL_POLYGON_OFFSET_FACTOR</tt>,
			<tt>GL_POLYGON_OFFSET_FILL</tt>, <tt>GL_POLYGON_OFFSET_LINE</tt>,
			<tt>GL_POLYGON_OFFSET_POINT</tt>, <tt>GL_TEXTURE_COORD_ARRAY</tt>,
			<tt>GL_TEXTURE_COORD_ARRAY_SIZE</tt>, <tt>GL_TEXTURE_COORD_ARRAY_STRIDE</tt>,
			<tt>GL_TEXTURE_COORD_ARRAY_TYPE</tt>, <tt>GL_VERTEX_ARRAY</tt>,
			<tt>GL_VERTEX_ARRAY_SIZE</tt>, <tt>GL_VERTEX_ARRAY_STRIDE</tt>, and
			<tt>GL_VERTEX_ARRAY_TYPE</tt> are available only if the GL version is 1.1 or greater.
		</p><p>
			<tt>GL_ALIASED_POINT_SIZE_RANGE</tt>, <tt>GL_ALIASED_POINT_SIZE_GRANULARITY</tt>,
			<tt>GL_FEEDBACK_BUFFER_SIZE</tt>, <tt>GL_FEEDBACK_BUFFER_TYPE</tt>,
			<tt>GL_LIGHT_MODEL_AMBIENT</tt>, <tt>GL_LIGHT_MODEL_COLOR_CONTROL</tt>,
			<tt>GL_MAX_3D_TEXTURE_SIZE</tt>, <tt>GL_MAX_ELEMENTS_INDICES</tt>,
			<tt>GL_MAX_ELEMENTS_VERTICES</tt>, <tt>GL_PACK_IMAGE_HEIGHT</tt>,
			<tt>GL_PACK_SKIP_IMAGES</tt>, <tt>GL_RESCALE_NORMAL</tt>,
			<tt>GL_SELECTION_BUFFER_SIZE</tt>, <tt>GL_SMOOTH_LINE_WIDTH_GRANULARITY</tt>,
			<tt>GL_SMOOTH_LINE_WIDTH_RANGE</tt>, <tt>GL_SMOOTH_POINT_SIZE_GRANULARITY</tt>,
			<tt>GL_SMOOTH_POINT_SIZE_RANGE</tt>, <tt>GL_TEXTURE_3D</tt>,
			<tt>GL_TEXTURE_BINDING_3D</tt>, <tt>GL_UNPACK_IMAGE_HEIGHT</tt>, and
			<tt>GL_UNPACK_SKIP_IMAGES</tt> are available only if the GL version is 1.2 or greater.
		</p><p>
			<tt>GL_LINE_WIDTH_GRANULARITY</tt> was deprecated in GL version 1.2. Its functionality was replaced by
			<tt>GL_SMOOTH_LINE_WIDTH_GRANULARITY</tt>.
		</p><p>
			<tt>GL_LINE_WIDTH_RANGE</tt> was deprecated in GL version 1.2. Its functionality was replaced by
			<tt>GL_SMOOTH_LINE_WIDTH_RANGE</tt>.
		</p><p>
			<tt>GL_POINT_SIZE_GRANULARITY</tt> was deprecated in GL version 1.2. Its functionality was replaced by
			<tt>GL_SMOOTH_POINT_SIZE_GRANULARITY</tt>.
		</p><p>
			<tt>GL_POINT_SIZE_RANGE</tt> was deprecated in GL version 1.2. Its functionality was replaced by
			<tt>GL_SMOOTH_POINT_SIZE_RANGE</tt>.
		</p><p>
			<tt>GL_BLEND_COLOR</tt>, <tt>GL_BLEND_EQUATION</tt>, <tt>GL_COLOR_MATRIX</tt>,
			<tt>GL_COLOR_MATRIX_STACK_DEPTH</tt>, <tt>GL_COLOR_TABLE</tt>,
			<tt>GL_CONVOLUTION_1D</tt>, <tt>GL_CONVOLUTION_2D</tt>, <tt>GL_HISTOGRAM</tt>,
			<tt>GL_MAX_COLOR_MATRIX_STACK_DEPTH</tt>, <tt>GL_MINMAX</tt>,
			<tt>GL_POST_COLOR_MATRIX_COLOR_TABLE</tt>, <tt>GL_POST_COLOR_MATRIX_RED_BIAS</tt>,
			<tt>GL_POST_COLOR_MATRIX_GREEN_BIAS</tt>, <tt>GL_POST_COLOR_MATRIX_BLUE_BIAS</tt>,
			<tt>GL_POST_COLOR_MATRIX_ALPHA_BIAS</tt>, <tt>GL_POST_COLOR_MATRIX_RED_SCALE</tt>,
			<tt>GL_POST_COLOR_MATRIX_GREEN_SCALE</tt>, <tt>GL_POST_COLOR_MATRIX_BLUE_SCALE</tt>,
			<tt>GL_POST_COLOR_MATRIX_ALPHA_SCALE</tt>, <tt>GL_POST_CONVOLUTION_COLOR_TABLE</tt>,
			<tt>GL_POST_CONVOLUTION_RED_BIAS</tt>, <tt>GL_POST_CONVOLUTION_GREEN_BIAS</tt>,
			<tt>GL_POST_CONVOLUTION_BLUE_BIAS</tt>, <tt>GL_POST_CONVOLUTION_ALPHA_BIAS</tt>,
			<tt>GL_POST_CONVOLUTION_RED_SCALE</tt>, <tt>GL_POST_CONVOLUTION_GREEN_SCALE</tt>,
			<tt>GL_POST_CONVOLUTION_BLUE_SCALE</tt>, <tt>GL_POST_CONVOLUTION_ALPHA_SCALE</tt>, and
			<tt>GL_SEPARABLE_2D</tt> are available only if <tt>GL_ARB_imaging</tt> is returned from
			<tt>glGet</tt> when called with the argument <tt>GL_EXTENSIONS</tt>.
		</p><p>
			<tt>GL_ACTIVE_TEXTURE_ARB</tt>, <tt>GL_CLIENT_ACTIVE_TEXTURE_ARB</tt>, and
			<tt>GL_MAX_TEXTURE_UNITS_ARB</tt> are available only if <tt>GL_ARB_multitexture</tt> is
			returned from <tt>glGet</tt> when called with the argument
			<tt>GL_EXTENSIONS</tt>.
		</p><p>
			When the <tt>GL_ARB_multitexture</tt> extension is supported, the following parameters return the
			associated value for the active texture unit: <tt>GL_CURRENT_RASTER_TEXTURE_COORDS</tt>,
			<tt>GL_TEXTURE_1D</tt>, <tt>GL_TEXTURE_BINDING_1D</tt>, <tt>GL_TEXTURE_2D</tt>,
			<tt>GL_TEXTURE_BINDING_2D</tt>, <tt>GL_TEXTURE_3D</tt>,
			<tt>GL_TEXTURE_BINDING_3D</tt>, <tt>GL_TEXTURE_GEN_S</tt>,
			<tt>GL_TEXTURE_GEN_T</tt>, <tt>GL_TEXTURE_GEN_R</tt>, <tt>GL_TEXTURE_GEN_Q</tt>,
			<tt>GL_TEXTURE_MATRIX</tt>, and <tt>GL_TEXTURE_STACK_DEPTH</tt>. Likewise, the following
			parameters return the associated value for the active client texture unit: <tt>GL_TEXTURE_COORD_ARRAY</tt>,
			<tt>GL_TEXTURE_COORD_ARRAY_SIZE</tt>, <tt>GL_TEXTURE_COORD_ARRAY_STRIDE</tt>,
			<tt>GL_TEXTURE_COORD_ARRAY_TYPE</tt>.
		</p></div><div class="refsect1" lang="en"><a name="glGet.3G-errors"/><h2>Errors</h2><p>
			<tt>GL_INVALID_ENUM</tt> is generated if <i><tt>pname</tt></i> is not an accepted value.
		</p><p>
			<tt>GL_INVALID_OPERATION</tt> is generated if <tt>glGet</tt> is executed
			between the execution of <a href="glBegin.3G.xml"><tt>glBegin</tt></a> and the corresponding execution of <a href="glBegin.3G.xml"><tt>glEnd</tt></a>.
		</p></div><div class="refsect1" lang="en"><a name="glGet.3G-see_also"/><h2>See Also</h2><p>
			<span class="simplelist"><a href="glGetClipPlane.3G.xml">glGetClipPlane</a>, <a href="glGetColorTable.3G.xml">glGetColorTable</a>, <a href="glGetColorTableParameter.3G.xml">glGetColorTableParameter</a>, <a href="glGetConvolutionFilter.3G.xml">glGetConvolutionFilter</a>, <a href="glGetConvolutionParameter.3G.xml">glGetConvolutionParameter</a>, <a href="glGetError.3G.xml">glGetError</a>, <a href="glGetHistogram.3G.xml">glGetHistogram</a>, <a href="glGetHistogramParameter.3G.xml">glGetHistogramParameter</a>, <a href="glGetLight.3G.xml">glGetLight</a>, <a href="glGetMap.3G.xml">glGetMap</a>, <a href="glGetMaterial.3G.xml">glGetMaterial</a>, <a href="glGetMinmax.3G.xml">glGetMinmax</a>, <a href="glGetMinmaxParameter.3G.xml">glGetMinmaxParameter</a>, <a href="glGetPixelMap.3G.xml">glGetPixelMap</a>, <a href="glGetPointerv.3G.xml">glGetPointerv</a>, <a href="glGetPolygonStipple.3G.xml">glGetPolygonStipple</a>, <a href="glGetSeparableFilter.3G.xml">glGetSeparableFilter</a>, <a href="glGetString.3G.xml">glGetString</a>, <a href="glGetTexEnv.3G.xml">glGetTexEnv</a>, <a href="glGetTexGen.3G.xml">glGetTexGen</a>, <a href="glGetTexImage.3G.xml">glGetTexImage</a>, <a href="glGetTexLevelParameter.3G.xml">glGetTexLevelParameter</a>, <a href="glGetTexParameter.3G.xml">glGetTexParameter</a>, <a href="glIsEnabled.3G.xml">glIsEnabled</a></span>
		</p></div></div><div class="navfooter"><hr/><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="glGenTextures.3G.xml">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="reference-GL.xml">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="glGetClipPlane.3G.xml">Next</a></td></tr><tr><td width="40%" align="left" valign="top">glGenTextures </td><td width="20%" align="center"><a accesskey="h" href="index.xml">Home</a></td><td width="40%" align="right" valign="top"> glGetClipPlane</td></tr></table></div></body></html>