compressedTexImage2D method
void
compressedTexImage2D()
Implementation
void compressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, NativeArray? data){
startCheck("compressedTexImage2D");
glCompressedTexImage2D(_gl, target, level, internalformat, width, height, border, data?.toJS);
checkError('compressedTexImage2D');
}