Package org.lwjgl.opengl
Class ARBTextureMirroredRepeat
- java.lang.Object
-
- org.lwjgl.opengl.ARBTextureMirroredRepeat
-
public final class ARBTextureMirroredRepeat extends java.lang.Object
Native bindings to the ARB_texture_mirrored_repeat extension.ARB_texture_mirrored_repeat extends the set of texture wrap modes to include a mode (
MIRRORED_REPEAT_ARB
) that effectively uses a texture map twice as large at the original image in which the additional half, for each coordinate, of the new image is a mirror image of the original image.This new mode relaxes the need to generate images whose opposite edges match by using the original image to generate a matching "mirror image".
Promoted to core in
OpenGL 1.4
.
-
-
Field Summary
Fields Modifier and Type Field and Description static int
GL_MIRRORED_REPEAT_ARB
Accepted by theparam
parameter of TexParameteri and TexParameterf, and by theparams
parameter of TexParameteriv and TexParameterfv, when theirpname
parameter is TEXTURE_WRAP_S, TEXTURE_WRAP_T, or TEXTURE_WRAP_R.
-
-
-
Field Detail
-
GL_MIRRORED_REPEAT_ARB
public static final int GL_MIRRORED_REPEAT_ARB
Accepted by theparam
parameter of TexParameteri and TexParameterf, and by theparams
parameter of TexParameteriv and TexParameterfv, when theirpname
parameter is TEXTURE_WRAP_S, TEXTURE_WRAP_T, or TEXTURE_WRAP_R.- See Also:
- Constant Field Values
-
-