Class ARBTextureCubeMap
- java.lang.Object
-
- org.lwjgl.opengl.ARBTextureCubeMap
-
public final class ARBTextureCubeMap extends java.lang.Object
Native bindings to the ARB_texture_cube_map extension.This extension provides a new texture generation scheme for cube map textures. Instead of the current texture providing a 1D, 2D, or 3D lookup into a 1D, 2D, or 3D texture image, the texture is a set of six 2D images representing the faces of a cube. The (s,t,r) texture coordinates are treated as a direction vector emanating from the center of a cube. At texture generation time, the interpolated per-fragment (s,t,r) selects one cube face 2D image based on the largest magnitude coordinate (the major axis). A new 2D (s,t) is calculated by dividing the two other coordinates (the minor axes values) by the major axis value. Then the new (s,t) is used to lookup into the selected 2D texture image face of the cube map.
Unlike a standard 1D, 2D, or 3D texture that have just one target, a cube map texture has six targets, one for each of its six 2D texture image cube faces. All these targets must be consistent, complete, and have equal width and height (ie, square dimensions).
This extension also provides two new texture coordinate generation modes for use in conjunction with cube map texturing. The reflection map mode generates texture coordinates (s,t,r) matching the vertex's eye-space reflection vector. The reflection map mode is useful for environment mapping without the singularity inherent in sphere mapping. The normal map mode generates texture coordinates (s,t,r) matching the vertex's transformed eye-space normal. The normal map mode is useful for sophisticated cube map texturing-based diffuse lighting models.
The intent of the new texgen functionality is that an application using cube map texturing can use the new texgen modes to automatically generate the reflection or normal vectors used to look up into the cube map texture.
Promoted to core in
OpenGL 1.3
.
-
-
Field Summary
Fields Modifier and Type Field and Description static int
GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB
Accepted by thepname
parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv.static int
GL_NORMAL_MAP_ARB
Accepted by theparam
parameters of TexGend, TexGenf, and TexGeni whenpname
parameter is TEXTURE_GEN_MODE.static int
GL_PROXY_TEXTURE_CUBE_MAP_ARB
Accepted by thetarget
parameter of GetTexLevelParameteriv, GetTexLevelParameterfv, GetTexParameteriv, and TexImage2D.static int
GL_REFLECTION_MAP_ARB
Accepted by theparam
parameters of TexGend, TexGenf, and TexGeni whenpname
parameter is TEXTURE_GEN_MODE.static int
GL_TEXTURE_BINDING_CUBE_MAP_ARB
Accepted by thepname
parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev.static int
GL_TEXTURE_CUBE_MAP_ARB
When thepname
parameter of TexGendv, TexGenfv, and TexGeniv is TEXTURE_GEN_MODE, then the arrayparams
may also contain NORMAL_MAP_ARB or REFLECTION_MAP_ARB.static int
GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB
GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB
GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB
GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB
GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB
GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARBAccepted by thetarget
parameter of GetTexImage, GetTexLevelParameteriv, GetTexLevelParameterfv, TexImage2D, CopyTexImage2D, TexSubImage2D, and CopySubTexImage2D.
-
-
-
Field Detail
-
GL_NORMAL_MAP_ARB, GL_REFLECTION_MAP_ARB
Accepted by theparam
parameters of TexGend, TexGenf, and TexGeni whenpname
parameter is TEXTURE_GEN_MODE.
-
GL_TEXTURE_CUBE_MAP_ARB
When thepname
parameter of TexGendv, TexGenfv, and TexGeniv is TEXTURE_GEN_MODE, then the arrayparams
may also contain NORMAL_MAP_ARB or REFLECTION_MAP_ARB. Accepted by thecap
parameter of Enable, Disable, IsEnabled, and by thepname
parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev, and by thetarget
parameter of BindTexture, GetTexParameterfv, GetTexParameteriv, TexParameterf, TexParameteri, TexParameterfv, and TexParameteriv.
-
GL_TEXTURE_BINDING_CUBE_MAP_ARB
Accepted by thepname
parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev.
-
GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB, GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB, GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB, GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB
Accepted by thetarget
parameter of GetTexImage, GetTexLevelParameteriv, GetTexLevelParameterfv, TexImage2D, CopyTexImage2D, TexSubImage2D, and CopySubTexImage2D.
-
GL_PROXY_TEXTURE_CUBE_MAP_ARB
Accepted by thetarget
parameter of GetTexLevelParameteriv, GetTexLevelParameterfv, GetTexParameteriv, and TexImage2D.
-
GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB
Accepted by thepname
parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv.
-
-