glMulticastCopyImageSubDataNv function opengl_glext
void
glMulticastCopyImageSubDataNv()
GLAPI void APIENTRY glMulticastCopyImageSubDataNV (GLuint srcGPU, GLbitfield dstGPUMask, 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 srcWidth, GLsizei srcHeight, GLsizei srcDepth)
Implementation
void glMulticastCopyImageSubDataNv(
int srcGpu,
int dstGpuMask,
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 srcWidth,
int srcHeight,
int srcDepth,
) {
final glMulticastCopyImageSubDataNvAsFunction = _glMulticastCopyImageSubDataNv
.cast<
NativeFunction<
Void Function(
Uint32 srcGpu,
Uint32 dstGpuMask,
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 srcWidth,
Uint32 srcHeight,
Uint32 srcDepth,
)
>
>()
.asFunction<
void Function(
int srcGpu,
int dstGpuMask,
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 srcWidth,
int srcHeight,
int srcDepth,
)
>();
return glMulticastCopyImageSubDataNvAsFunction(
srcGpu,
dstGpuMask,
srcName,
srcTarget,
srcLevel,
srcX,
srcY,
srcZ,
dstName,
dstTarget,
dstLevel,
dstX,
dstY,
dstZ,
srcWidth,
srcHeight,
srcDepth,
);
}