glCopyTexSubImage3D method
void
glCopyTexSubImage3D()
Implementation
void glCopyTexSubImage3D(
int target,
int level,
int xoffset,
int yoffset,
int zoffset,
int x,
int y,
int width,
int height,
) {
return _glCopyTexSubImage3D(
target,
level,
xoffset,
yoffset,
zoffset,
x,
y,
width,
height,
);
}