Specifies the symbolic name of the texture-coordinate generation function or function parameters. Must be GL_TEXTURE_GEN_MODE, GL_OBJECT_PLANE, or GL_EYE_PLANE.
Specifies a pointer to an array of texture generation parameters. If pname is GL_TEXTURE_GEN_MODE, then the array must contain a single symbolic constant, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP. Otherwise, params holds the coefficients for the texture-coordinate generation function specified by pname.
Generated using TypeDoc
glTexGen
selects a texture-coordinate generation function or supplies coefficients for one of the functions. coord names one of the (s, t, r, q) texture coordinates; it must be one of the symbols GL_S, GL_T, GL_R, or GL_Q. pname must be one of three symbolic constants: GL_TEXTURE_GEN_MODE, GL_OBJECT_PLANE, or GL_EYE_PLANE. If pname is GL_TEXTURE_GEN_MODE, then params chooses a mode, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP. If pname is either GL_OBJECT_PLANE or GL_EYE_PLANE, params contains coefficients for the corresponding texture generation function.If the texture generation function is GL_OBJECT_LINEAR, the function
๐ = ๐ฉโ ร ๐ฑโ + ๐ฉโ ร ๐ฒโ + ๐ฉโ ร ๐ณโ + ๐ฉโ ร ๐ฐโ
is used, where ๐ is the value computed for the coordinate named in coord, ๐ฉโ, ๐ฉโ, ๐ฉโ, and ๐ฉโ are the four values supplied in params, and ๐ฑโ, ๐ฒโ, ๐ณโ, and ๐ฐโ are the object coordinates of the vertex. This function can be used, for example, to texture-map terrain using sea level as a reference plane (defined by ๐ฉโ, ๐ฉโ, ๐ฉโ, and ๐ฉโ). The altitude of a terrain vertex is computed by the GL_OBJECT_LINEAR coordinate generation function as its distance from sea level; that altitude can then be used to index the texture image to map white snow onto peaks and green grass onto foothills.
If the texture generation function is GL_EYE_LINEAR, the function
๐ = ๐ฉโโฒโฒ ร ๐ฑโ + ๐ฉโโฒโฒ ร ๐ฒโ + ๐ฉโโฒโฒ ร ๐ณโ + ๐ฉโโฒโฒ ร ๐ฐโ
is used, where
(๐ฉโโฒโฒ๐ฉโโฒโฒ๐ฉโโฒโฒ๐ฉโโฒโฒ) = (๐ฉโ๐ฉโ๐ฉโ๐ฉโ)แดน^โปยน
and ๐ฑโ, ๐ฒโ, ๐ณโ, and ๐ฐโ are the eye coordinates of the vertex, ๐ฉโ, ๐ฉโ, ๐ฉโ, and ๐ฉโ are the values supplied in params, and ๐ is the modelview matrix when
glTexGen
is invoked. If ๐ is poorly conditioned or singular, texture coordinates generated by the resulting function may be inaccurate or undefined.Note that the values in params define a reference plane in eye coordinates. The modelview matrix that is applied to them may not be the same one in effect when the polygon vertices are transformed. This function establishes a field of texture coordinates that can produce dynamic contour lines on moving objects.
If the texture generation function is GL_SPHERE_MAP and coord is either GL_S or GL_T, ๐ฌ and ๐ญ texture coordinates are generated as follows. Let u be the unit vector pointing from the origin to the polygon vertex (in eye coordinates). Let n sup prime be the current normal, after transformation to eye coordinates. Let
๐ = (๐โ๐แตง๐๐ง)แต be the reflection vector such that
๐ = ๐ฎ - 2๐งโฒโฒ๐งโฒโฒแต๐ฎ
Finally, let ๐ฆ = 2โ(๐โยฒ + ๐แตงยฒ + (๐๐ง + 1)ยฒ). Then the values assigned to the ๐ฌ and ๐ญ texture coordinates are
๐ฌ = ๐โ / ๐ฆ + 1 / 2
๐ญ = ๐แตง / ๐ฆ + 1 / 2
To enable or disable a texture-coordinate generation function, call glEnable or glDisable with one of the symbolic texture-coordinate names (GL_TEXTURE_GEN_S, GL_TEXTURE_GEN_T, GL_TEXTURE_GEN_R, or GL_TEXTURE_GEN_Q) as the argument. When enabled, the specified texture coordinate is computed according to the generating function associated with that coordinate. When disabled, subsequent vertices take the specified texture coordinate from the current set of texture coordinates. Initially, all texture generation functions are set to GL_EYE_LINEAR and are disabled. Both ๐ฌ plane equations are (1, 0, 0, 0), both ๐ญ plane equations are (0, 1, 0, 0), and all ๐ซ and ๐ช plane equations are (0, 0, 0, 0).
When the ARB_multitexture extension is supported,
glTexGen
sets the texture generation parameters for the currently active texture unit, selected with glActiveTexture.