glCopyTexSubImage3D method

void glCopyTexSubImage3D(
  1. int target,
  2. int level,
  3. int xoffset,
  4. int yoffset,
  5. int zoffset,
  6. int x,
  7. int y,
  8. int width,
  9. int height,
)

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,
  );
}