glCopyTextureSubImage2Dext function opengl_glext

void glCopyTextureSubImage2Dext(
  1. int texture,
  2. int target,
  3. int level,
  4. int xoffset,
  5. int yoffset,
  6. int x,
  7. int y,
  8. int width,
  9. int height,
)
GLAPI void APIENTRY glCopyTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)

Implementation

void glCopyTextureSubImage2Dext(
  int texture,
  int target,
  int level,
  int xoffset,
  int yoffset,
  int x,
  int y,
  int width,
  int height,
) {
  final glCopyTextureSubImage2DextAsFunction = _glCopyTextureSubImage2Dext
      .cast<
        NativeFunction<
          Void Function(
            Uint32 texture,
            Uint32 target,
            Int32 level,
            Int32 xoffset,
            Int32 yoffset,
            Int32 x,
            Int32 y,
            Uint32 width,
            Uint32 height,
          )
        >
      >()
      .asFunction<
        void Function(
          int texture,
          int target,
          int level,
          int xoffset,
          int yoffset,
          int x,
          int y,
          int width,
          int height,
        )
      >();
  return glCopyTextureSubImage2DextAsFunction(
    texture,
    target,
    level,
    xoffset,
    yoffset,
    x,
    y,
    width,
    height,
  );
}