glCopyMultiTexImage1Dext function opengl_glext

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

Implementation

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