glLgpuCopyImageSubDataNvx function opengl_glext

void glLgpuCopyImageSubDataNvx(
  1. int sourceGpu,
  2. int destinationGpuMask,
  3. int srcName,
  4. int srcTarget,
  5. int srcLevel,
  6. int srcX,
  7. int srxY,
  8. int srcZ,
  9. int dstName,
  10. int dstTarget,
  11. int dstLevel,
  12. int dstX,
  13. int dstY,
  14. int dstZ,
  15. int width,
  16. int height,
  17. int depth,
)
GLAPI void APIENTRY glLGPUCopyImageSubDataNVX (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth)

Implementation

void glLgpuCopyImageSubDataNvx(
  int sourceGpu,
  int destinationGpuMask,
  int srcName,
  int srcTarget,
  int srcLevel,
  int srcX,
  int srxY,
  int srcZ,
  int dstName,
  int dstTarget,
  int dstLevel,
  int dstX,
  int dstY,
  int dstZ,
  int width,
  int height,
  int depth,
) {
  final glLgpuCopyImageSubDataNvxAsFunction = _glLgpuCopyImageSubDataNvx
      .cast<
        NativeFunction<
          Void Function(
            Uint32 sourceGpu,
            Uint32 destinationGpuMask,
            Uint32 srcName,
            Uint32 srcTarget,
            Int32 srcLevel,
            Int32 srcX,
            Int32 srxY,
            Int32 srcZ,
            Uint32 dstName,
            Uint32 dstTarget,
            Int32 dstLevel,
            Int32 dstX,
            Int32 dstY,
            Int32 dstZ,
            Uint32 width,
            Uint32 height,
            Uint32 depth,
          )
        >
      >()
      .asFunction<
        void Function(
          int sourceGpu,
          int destinationGpuMask,
          int srcName,
          int srcTarget,
          int srcLevel,
          int srcX,
          int srxY,
          int srcZ,
          int dstName,
          int dstTarget,
          int dstLevel,
          int dstX,
          int dstY,
          int dstZ,
          int width,
          int height,
          int depth,
        )
      >();
  return glLgpuCopyImageSubDataNvxAsFunction(
    sourceGpu,
    destinationGpuMask,
    srcName,
    srcTarget,
    srcLevel,
    srcX,
    srxY,
    srcZ,
    dstName,
    dstTarget,
    dstLevel,
    dstX,
    dstY,
    dstZ,
    width,
    height,
    depth,
  );
}