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