texSubImage2D method
void
texSubImage2D()
Implementation
void texSubImage2D(int target, int level, int x, int y, int width, int height,
int format, int type, NativeArray data) {
gl.glTexSubImage2D(target, level, x, y, width, height, format, type,
data.data.cast<Void>());
}