glCopyTexSubImage1D function 
 
    opengl
 
    
    
  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);
}