glCopyTextureImage1Dext function opengl_glext

void glCopyTextureImage1Dext(
  1. int texture,
  2. int target,
  3. int level,
  4. int internalformat,
  5. int x,
  6. int y,
  7. int width,
  8. int border,
)
GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)

Implementation

void glCopyTextureImage1Dext(
  int texture,
  int target,
  int level,
  int internalformat,
  int x,
  int y,
  int width,
  int border,
) {
  final glCopyTextureImage1DextAsFunction = _glCopyTextureImage1Dext
      .cast<
        NativeFunction<
          Void Function(
            Uint32 texture,
            Uint32 target,
            Int32 level,
            Uint32 internalformat,
            Int32 x,
            Int32 y,
            Uint32 width,
            Int32 border,
          )
        >
      >()
      .asFunction<
        void Function(
          int texture,
          int target,
          int level,
          int internalformat,
          int x,
          int y,
          int width,
          int border,
        )
      >();
  return glCopyTextureImage1DextAsFunction(
    texture,
    target,
    level,
    internalformat,
    x,
    y,
    width,
    border,
  );
}