compressedTexSubImage3D method
void
compressedTexSubImage3D()
Implementation
void compressedTexSubImage3D(
int target,
int level,
int xoffset,
int yoffset,
int zoffset,
int width,
int height,
int depth,
int format,
NativeArray? pixels,
){
startCheck('compressedTexSubImage3D');
glCompressedTexSubImage3D(_gl, target,level,xoffset,yoffset,zoffset,width,height,depth,format,pixels?.toJS);
checkError('compressedTexSubImage3D');
}