copyTexImage2D method
void
copyTexImage2D()
Implementation
void copyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border){
startCheck('copyTexImage2D');
gl.glCopyTexImage2D(target, level, internalformat, x, y, width, height, border);
checkError('copyTexImage2D');
}