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