glCopyTexImage2Dext function opengl_glext

void glCopyTexImage2Dext(
  1. int target,
  2. int level,
  3. int internalformat,
  4. int x,
  5. int y,
  6. int width,
  7. int height,
  8. int border,
)
GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)

Implementation

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