glTexImage3D method
void
glTexImage3D()
Implementation
void glTexImage3D(int target, int level, int internalformat, int width, int height, int depth, int border, int format, int type, TypedData? pixels) {
gles.glTexImage3D(gl, target, level, internalformat, width, height, depth,border, format, type, pixels.jsify());
}