glCopyImageSubDataNv function opengl_glext

void glCopyImageSubDataNv(
  1. int srcName,
  2. int srcTarget,
  3. int srcLevel,
  4. int srcX,
  5. int srcY,
  6. int srcZ,
  7. int dstName,
  8. int dstTarget,
  9. int dstLevel,
  10. int dstX,
  11. int dstY,
  12. int dstZ,
  13. int width,
  14. int height,
  15. int depth,
)
GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth)

Implementation

void glCopyImageSubDataNv(
  int srcName,
  int srcTarget,
  int srcLevel,
  int srcX,
  int srcY,
  int srcZ,
  int dstName,
  int dstTarget,
  int dstLevel,
  int dstX,
  int dstY,
  int dstZ,
  int width,
  int height,
  int depth,
) {
  final glCopyImageSubDataNvAsFunction = _glCopyImageSubDataNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 srcName,
            Uint32 srcTarget,
            Int32 srcLevel,
            Int32 srcX,
            Int32 srcY,
            Int32 srcZ,
            Uint32 dstName,
            Uint32 dstTarget,
            Int32 dstLevel,
            Int32 dstX,
            Int32 dstY,
            Int32 dstZ,
            Uint32 width,
            Uint32 height,
            Uint32 depth,
          )
        >
      >()
      .asFunction<
        void Function(
          int srcName,
          int srcTarget,
          int srcLevel,
          int srcX,
          int srcY,
          int srcZ,
          int dstName,
          int dstTarget,
          int dstLevel,
          int dstX,
          int dstY,
          int dstZ,
          int width,
          int height,
          int depth,
        )
      >();
  return glCopyImageSubDataNvAsFunction(
    srcName,
    srcTarget,
    srcLevel,
    srcX,
    srcY,
    srcZ,
    dstName,
    dstTarget,
    dstLevel,
    dstX,
    dstY,
    dstZ,
    width,
    height,
    depth,
  );
}