compressedTexImage3D method
void
compressedTexImage3D()
Implementation
void compressedTexImage3D(
int target,
int level,
int internalformat,
int width,
int height,
int depth,
int border,
NativeArray? pixels,
){
startCheck("compressedTexImage3D");
glCompressedTexImage3D(_gl, target,level,internalformat,width,height,depth,border,pixels?.toJS);
checkError('compressedTexImage3D');
}