glCopyTexSubImage2D method

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

Implementation

void glCopyTexSubImage2D(
  int target,
  int level,
  int xoffset,
  int yoffset,
  int x,
  int y,
  int width,
  int height,
) {
  return _glCopyTexSubImage2D(
    target,
    level,
    xoffset,
    yoffset,
    x,
    y,
    width,
    height,
  );
}