web api instance method
WebGL2RenderingContext: compressedTexSubImage3D() method
Available in workers
The compressedTexSubImage3D() method of the WebGL2RenderingContext interface of the WebGL API specifies a three-dimensional sub-rectangle for a texture image in a compressed format.
Compressed image formats are only available via some WebGL extension.
Syntax
compressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, offset)
compressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, srcData)
compressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, srcData, srcOffset)
compressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, srcData, srcOffset, srcLengthOverride)
Parameters
target- : A
GLenumspecifying the binding point (target) of the active compressed texture. Possible values:gl.TEXTURE_3D: A three-dimensional texture.gl.TEXTURE_2D_ARRAY: A two-dimensional array texture.
- : A
level- : A
GLintspecifying the level of detail. Level 0 is the base image level and level n is the n-th mipmap reduction level.
- : A
xoffset- : A
GLintspecifying the x offset within the compressed texture image.
- : A
yoffset- : A
GLintspecifying the y offset within the compressed texture image.
- : A
zoffset- : A
GLintspecifying the z offset within the compressed texture image.
- : A
width- : A
GLsizeispecifying the width of the compressed texture in texels.
- : A
height- : A
GLsizeispecifying the height of the compressed texture in texels.
- : A
depth- : A
GLsizeispecifying the depth of the texture/the number of textures in aTEXTURE_2D_ARRAY.
- : A
format- : A
GLenumspecifying the compressed image format. For a list of possible values, seecompressedTexImage2D().
- : A
The texture source can be provided in one of two ways: from an ArrayBuffer (possibly shared) using srcData, srcOffset, and srcLengthOverride; or, in WebGL 2, from gl.PIXEL_UNPACK_BUFFER using imageSize and offset.
srcData- : A
TypedArrayorDataViewcontaining the compressed texture data.
- : A
srcOffsetOptional- : An integer specifying the index of
srcDatato start reading from. Defaults to0.
- : An integer specifying the index of
srcLengthOverrideOptional- : An integer specifying the number of elements in
srcDatato read. Defaults tosrcData.length - srcOffset.
- : An integer specifying the number of elements in
imageSize- : A
GLsizeispecifying the size of the image data in bytes.
- : A
offset- : A
GLintptrspecifying the starting address in the buffer bound togl.PIXEL_UNPACK_BUFFER.
- : A
Return value
None (undefined).
Examples
gl.compressedTexSubImage3D(
gl.TEXTURE_3D,
0,
0,
0,
512,
512,
512,
gl.COMPRESSED_R11_EAC,
textureData,
);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.