copyTexSubImage3D method
void
copyTexSubImage3D()
Implementation
void copyTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height){
startCheck('copyTexSubImage3D');
gl.glCopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height);
checkError('copyTexSubImage3D');
}