glCopyTexSubImage1D function opengl

void glCopyTexSubImage1D(
  1. int target,
  2. int level,
  3. int xoffset,
  4. int x,
  5. int y,
  6. int width,
)
GLAPI void GLAPIENTRY glCopyTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width )

Implementation

void glCopyTexSubImage1D(
  int target,
  int level,
  int xoffset,
  int x,
  int y,
  int width,
) {
  final glCopyTexSubImage1DAsFunction = _glCopyTexSubImage1D
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Int32 level,
            Int32 xoffset,
            Int32 x,
            Int32 y,
            Uint32 width,
          )
        >
      >()
      .asFunction<
        void Function(
          int target,
          int level,
          int xoffset,
          int x,
          int y,
          int width,
        )
      >();
  return glCopyTexSubImage1DAsFunction(target, level, xoffset, x, y, width);
}