glCopyMultiTexSubImage3Dext function opengl_glext

void glCopyMultiTexSubImage3Dext(
  1. int texunit,
  2. int target,
  3. int level,
  4. int xoffset,
  5. int yoffset,
  6. int zoffset,
  7. int x,
  8. int y,
  9. int width,
  10. int height,
)
GLAPI void APIENTRY glCopyMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)

Implementation

void glCopyMultiTexSubImage3Dext(
  int texunit,
  int target,
  int level,
  int xoffset,
  int yoffset,
  int zoffset,
  int x,
  int y,
  int width,
  int height,
) {
  final glCopyMultiTexSubImage3DextAsFunction = _glCopyMultiTexSubImage3Dext
      .cast<
        NativeFunction<
          Void Function(
            Uint32 texunit,
            Uint32 target,
            Int32 level,
            Int32 xoffset,
            Int32 yoffset,
            Int32 zoffset,
            Int32 x,
            Int32 y,
            Uint32 width,
            Uint32 height,
          )
        >
      >()
      .asFunction<
        void Function(
          int texunit,
          int target,
          int level,
          int xoffset,
          int yoffset,
          int zoffset,
          int x,
          int y,
          int width,
          int height,
        )
      >();
  return glCopyMultiTexSubImage3DextAsFunction(
    texunit,
    target,
    level,
    xoffset,
    yoffset,
    zoffset,
    x,
    y,
    width,
    height,
  );
}