Class ARBClearTexture
- java.lang.Object
-
- org.lwjgl.opengl.ARBClearTexture
-
public class ARBClearTexture extends java.lang.ObjectNative bindings to the ARB_clear_texture extension.Texture objects are fundamental to the operation of OpenGL. They are used as a source for texture sampling and destination for rendering as well as being accessed in shaders for image load/store operations. It is also possible to invalidate the contents of a texture. It is currently only possible to set texture image data to known values by uploading some or all of a image array from application memory or by attaching it to a framebuffer object and using
Clearor theOpenGL 3.0ClearBuffer commands.Both uploading initial texture data and clearing by attaching to a framebuffer have potential disadvantages when one simply wants to initialize texture data to a known value. Uploading initial data requires the application to allocate a (potentially large) chunk of memory and transferring that to the GL. This can be a costly operation both in terms of memory bandwidth and power usage. Alternatively, attaching a texture level to a framebuffer to clear it may not be possible if the texture format isn't supported for rendering, or even if it is, attaching the image to a framebuffer object may cause the texture to be allocated in certain types of memory, which it may otherwise not need to be placed in.
This extension solves these problems by providing a mechanism whereby the contents of a texture image array can be set to known values by using the
ClearTexImageorClearTexSubImagecommands. These commands can also be useful for initializing an image that will be used for atomic shader operations.Requires
OpenGL 1.3. Promoted to core inOpenGL 4.4.
-
-
Field Summary
Fields Modifier and Type Field and Description static intGL_CLEAR_TEXTURE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static voidglClearTexImage(int texture, int level, int format, int type, java.nio.ByteBuffer data)Is equivalent to callingClearTexSubImagewithxoffset,yoffset, andzoffsetequal to -bandwidth,height, anddepthequal to the dimensions of the texture image plus2xb(or zero and one for dimensions the texture doesn't have).static voidglClearTexImage(int texture, int level, int format, int type, double[] data)Array version of:ClearTexImagestatic voidglClearTexImage(int texture, int level, int format, int type, java.nio.DoubleBuffer data)Is equivalent to callingClearTexSubImagewithxoffset,yoffset, andzoffsetequal to -bandwidth,height, anddepthequal to the dimensions of the texture image plus2xb(or zero and one for dimensions the texture doesn't have).static voidglClearTexImage(int texture, int level, int format, int type, float[] data)Array version of:ClearTexImagestatic voidglClearTexImage(int texture, int level, int format, int type, java.nio.FloatBuffer data)Is equivalent to callingClearTexSubImagewithxoffset,yoffset, andzoffsetequal to -bandwidth,height, anddepthequal to the dimensions of the texture image plus2xb(or zero and one for dimensions the texture doesn't have).static voidglClearTexImage(int texture, int level, int format, int type, int[] data)Array version of:ClearTexImagestatic voidglClearTexImage(int texture, int level, int format, int type, java.nio.IntBuffer data)Is equivalent to callingClearTexSubImagewithxoffset,yoffset, andzoffsetequal to -bandwidth,height, anddepthequal to the dimensions of the texture image plus2xb(or zero and one for dimensions the texture doesn't have).static voidglClearTexImage(int texture, int level, int format, int type, short[] data)Array version of:ClearTexImagestatic voidglClearTexImage(int texture, int level, int format, int type, java.nio.ShortBuffer data)Is equivalent to callingClearTexSubImagewithxoffset,yoffset, andzoffsetequal to -bandwidth,height, anddepthequal to the dimensions of the texture image plus2xb(or zero and one for dimensions the texture doesn't have).static voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.ByteBuffer data)Fills all or part of a texture image with a constant value.static voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, double[] data)Array version of:ClearTexSubImagestatic voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.DoubleBuffer data)Fills all or part of a texture image with a constant value.static voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, float[] data)Array version of:ClearTexSubImagestatic voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.FloatBuffer data)Fills all or part of a texture image with a constant value.static voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, int[] data)Array version of:ClearTexSubImagestatic voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.IntBuffer data)Fills all or part of a texture image with a constant value.static voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, short[] data)Array version of:ClearTexSubImagestatic voidglClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.ShortBuffer data)Fills all or part of a texture image with a constant value.
-
-
-
Method Detail
-
glClearTexSubImage
public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.ByteBuffer data) public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.ShortBuffer data) public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.IntBuffer data) public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.FloatBuffer data) public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, java.nio.DoubleBuffer data)Fills all or part of a texture image with a constant value.Arguments
xoffset,yoffset, andzoffsetspecify the lower left texel coordinates of awidth-wide byheight-high bydepth-deep rectangular subregion of the texel array and are interpreted as they are inTexSubImage3D.For 1D array textures,
yoffsetis interpreted as the first layer to be cleared andheightis the number of layers to clear. For 2D array textures,zoffsetis interpreted as the first layer to be cleared anddepthis the number of layers to clear. Cube map textures are treated as an array of six slices in the z-dimension, where the value ofzoffsetis interpreted as specifying the cube map face for the correspondinglayeranddepthis the number of faces to clear. For cube map array textures,zoffsetis the first layer-face to clear, anddepthis the number of layer-faces to clear. Each layer-face is translated into an array layer and a cube map face.Negative values of
xoffset,yoffset, andzoffsetcorrespond to the coordinates of border texels.- Parameters:
texture- the texture to clear. It is an error iftextureis zero or not the name of a texture object, iftextureis a buffer texture, or if the texture image has a compressed internal formatlevel- the texture level to clearxoffset- the x coordinate of the texel subregionyoffset- the y coordinate of the texel subregionzoffset- the z coordinate of the texel subregionwidth- the subregion widthheight- the subregion heightdepth- the subregion depthformat- the format of the source data. One of:type- the type of the source data. One of:data- an array of between one and four components of texel data that will be used as the source for the constant fill value. IfdataisNULL, then the pointer is ignored and the sub-range of the texture image is filled with zeros.
-
glClearTexImage
public static void glClearTexImage(int texture, int level, int format, int type, java.nio.ByteBuffer data) public static void glClearTexImage(int texture, int level, int format, int type, java.nio.ShortBuffer data) public static void glClearTexImage(int texture, int level, int format, int type, java.nio.IntBuffer data) public static void glClearTexImage(int texture, int level, int format, int type, java.nio.FloatBuffer data) public static void glClearTexImage(int texture, int level, int format, int type, java.nio.DoubleBuffer data)Is equivalent to callingClearTexSubImagewithxoffset,yoffset, andzoffsetequal to -bandwidth,height, anddepthequal to the dimensions of the texture image plus2xb(or zero and one for dimensions the texture doesn't have).- Parameters:
texture- the texture to clear. It is an error iftextureis zero or not the name of a texture object, iftextureis a buffer texture, or if the texture image has a compressed internal formatlevel- the texture level to clearformat- the format of the source data. One of:type- the type of the source data. One of:data- an array of between one and four components of texel data that will be used as the source for the constant fill value. IfdataisNULL, then the pointer is ignored and the sub-range of the texture image is filled with zeros.
-
glClearTexSubImage
public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, short[] data) public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, int[] data) public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, float[] data) public static void glClearTexSubImage(int texture, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, double[] data)Array version of:ClearTexSubImage
-
glClearTexImage
public static void glClearTexImage(int texture, int level, int format, int type, short[] data) public static void glClearTexImage(int texture, int level, int format, int type, int[] data) public static void glClearTexImage(int texture, int level, int format, int type, float[] data) public static void glClearTexImage(int texture, int level, int format, int type, double[] data)Array version of:ClearTexImage
-
-