glCopyTextureSubImage1Dext function opengl_glext

void glCopyTextureSubImage1Dext(
  1. int texture,
  2. int target,
  3. int level,
  4. int xoffset,
  5. int x,
  6. int y,
  7. int width,
)
GLAPI void APIENTRY glCopyTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)

Implementation

void glCopyTextureSubImage1Dext(
  int texture,
  int target,
  int level,
  int xoffset,
  int x,
  int y,
  int width,
) {
  final glCopyTextureSubImage1DextAsFunction = _glCopyTextureSubImage1Dext
      .cast<
        NativeFunction<
          Void Function(
            Uint32 texture,
            Uint32 target,
            Int32 level,
            Int32 xoffset,
            Int32 x,
            Int32 y,
            Uint32 width,
          )
        >
      >()
      .asFunction<
        void Function(
          int texture,
          int target,
          int level,
          int xoffset,
          int x,
          int y,
          int width,
        )
      >();
  return glCopyTextureSubImage1DextAsFunction(
    texture,
    target,
    level,
    xoffset,
    x,
    y,
    width,
  );
}