glCopyTexImage1D function

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 glCopyTexImage1DLookupFunction = libGL.lookupFunction<
      Void Function(Uint32 target, Int32 level, Uint32 internalFormat, Int32 x,
          Int32 y, Uint32 width, Int32 border),
      void Function(int target, int level, int internalFormat, int x, int y,
          int width, int border)>('glCopyTexImage1D');
  return glCopyTexImage1DLookupFunction(
      target, level, internalFormat, x, y, width, border);
}