Class EXTTextureSwizzle
- java.lang.Object
-
- org.lwjgl.opengl.EXTTextureSwizzle
-
public final class EXTTextureSwizzle extends java.lang.Object
Native bindings to the EXT_texture_swizzle extension.Classic OpenGL texture formats conflate texture storage and interpretation, and assume that textures represent color. In modern applications, a significant quantity of textures don't represent color, but rather data like shadow maps, normal maps, page tables, occlusion data, etc.. For the latter class of data, calling the data "RGBA" is just a convenient mapping of what the data is onto the current model, but isn't an accurate reflection of the reality of the data.
The existing texture formats provide an almost orthogonal set of data types, sizes, and number of components, but the mappings of this storage into what the shader or fixed-function pipeline fetches is very much non-orthogonal. Previous extensions have added some of the most demanded missing formats, but the problem has not been solved once and for all.
This extension provides a mechanism to swizzle the components of a texture before they are applied according to the texture environment in fixed-function or as they are returned to the shader.
-
-
Field Summary
Fields Modifier and Type Field and Description static int
GL_TEXTURE_SWIZZLE_A_EXT
GL_TEXTURE_SWIZZLE_B_EXT
GL_TEXTURE_SWIZZLE_G_EXT
GL_TEXTURE_SWIZZLE_R_EXTAccepted by thepname
parameters of TexParameteri, TexParameterf, TexParameteriv, TexParameterfv, GetTexParameterfv, and GetTexParameteriv.static int
GL_TEXTURE_SWIZZLE_RGBA_EXT
Accepted by thepname
parameters of TexParameteriv, TexParameterfv, GetTexParameterfv, and GetTexParameteriv.
-
-
-
Field Detail
-
GL_TEXTURE_SWIZZLE_R_EXT, GL_TEXTURE_SWIZZLE_G_EXT, GL_TEXTURE_SWIZZLE_B_EXT, GL_TEXTURE_SWIZZLE_A_EXT
Accepted by thepname
parameters of TexParameteri, TexParameterf, TexParameteriv, TexParameterfv, GetTexParameterfv, and GetTexParameteriv.
-
GL_TEXTURE_SWIZZLE_RGBA_EXT
Accepted by thepname
parameters of TexParameteriv, TexParameterfv, GetTexParameterfv, and GetTexParameteriv.
-
-