Package org.lwjgl.opengles
Class NVTextureBorderClamp
- java.lang.Object
-
- org.lwjgl.opengles.NVTextureBorderClamp
-
public final class NVTextureBorderClamp extends java.lang.ObjectNative bindings to the NV_texture_border_clamp extension.OpenGL ES provides only a single clamping wrap mode: CLAMP_TO_EDGE. However, the ability to clamp to a constant border color can be useful to quickly detect texture coordinates that exceed their expected limits or to dummy out any such accesses with transparency or a neutral color in tiling or light maps.
This extension defines an additional texture clamping algorithm. CLAMP_TO_BORDER_NV clamps texture coordinates at all mipmap levels such that NEAREST and LINEAR filters of clamped coordinates return only the constant border color. This does not add the ability for textures to specify borders using glTexImage2D, but only to clamp to a constant border value set using glTexParameter.
Requires
GLES 2.0.
-
-
Field Summary
Fields Modifier and Type Field and Description static intGL_CLAMP_TO_BORDER_NVAccepted by theparamparameter of TexParameteri and TexParameterf, and by theparamsparameter of TexParameteriv and TexParameterfv, and returned by theparamsparameter of GetTexParameteriv and GetTexParameterfv when theirpnameparameter is TEXTURE_WRAP_S, TEXTURE_WRAP_T, or TEXTURE_WRAP_R_OES.static intGL_TEXTURE_BORDER_COLOR_NVAccepted by thepnameparameter of TexParameteri, TexParameterf, TexParameteriv, and TexParameterfv.
-
-
-
Field Detail
-
GL_TEXTURE_BORDER_COLOR_NV
public static final int GL_TEXTURE_BORDER_COLOR_NV
Accepted by thepnameparameter of TexParameteri, TexParameterf, TexParameteriv, and TexParameterfv.- See Also:
- Constant Field Values
-
GL_CLAMP_TO_BORDER_NV
public static final int GL_CLAMP_TO_BORDER_NV
Accepted by theparamparameter of TexParameteri and TexParameterf, and by theparamsparameter of TexParameteriv and TexParameterfv, and returned by theparamsparameter of GetTexParameteriv and GetTexParameterfv when theirpnameparameter is TEXTURE_WRAP_S, TEXTURE_WRAP_T, or TEXTURE_WRAP_R_OES.- See Also:
- Constant Field Values
-
-