glCopyTexImage1D function opengl

void glCopyTexImage1D(
  1. int target,
  2. int level,
  3. int internalformat,
  4. int x,
  5. int y,
  6. int width,
  7. int border,
)
GLAPI void GLAPIENTRY glCopyTexImage1D( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border )

Implementation

void glCopyTexImage1D(
  int target,
  int level,
  int internalformat,
  int x,
  int y,
  int width,
  int border,
) {
  final glCopyTexImage1DAsFunction = _glCopyTexImage1D
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Int32 level,
            Uint32 internalformat,
            Int32 x,
            Int32 y,
            Uint32 width,
            Int32 border,
          )
        >
      >()
      .asFunction<
        void Function(
          int target,
          int level,
          int internalformat,
          int x,
          int y,
          int width,
          int border,
        )
      >();
  return glCopyTexImage1DAsFunction(
    target,
    level,
    internalformat,
    x,
    y,
    width,
    border,
  );
}