glCopyTexSubImage1Dext function opengl_glext

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

Implementation

void glCopyTexSubImage1Dext(
  int target,
  int level,
  int xoffset,
  int x,
  int y,
  int width,
) {
  final glCopyTexSubImage1DextAsFunction = _glCopyTexSubImage1Dext
      .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 glCopyTexSubImage1DextAsFunction(target, level, xoffset, x, y, width);
}