public class GLXNVCopyImage
extends java.lang.Object
This extension enables efficient image data transfer between image objects (i.e. textures and renderbuffers) without the need to bind the objects or otherwise configure the rendering pipeline. The GLX version allows copying between images in different contexts, even if those contexts are in different sharelists or even on different physical devices.
| Modifier and Type | Method and Description |
|---|---|
static void |
glXCopyImageSubDataNV(long display,
long srcCtx,
int srcName,
int srcTarget,
int srcLevel,
int srcX,
int srcY,
int srcZ,
long dstCtx,
int dstName,
int dstTarget,
int dstLevel,
int dstX,
int dstY,
int dstZ,
int width,
int height,
int depth)
Behaves identically to the core function
CopyImageSubDataNV, except that the srcCtx and dstCtx parameters specify
the contexts in which to look up the source and destination objects, respectively. |
public static void glXCopyImageSubDataNV(long display,
long srcCtx,
int srcName,
int srcTarget,
int srcLevel,
int srcX,
int srcY,
int srcZ,
long dstCtx,
int dstName,
int dstTarget,
int dstLevel,
int dstX,
int dstY,
int dstZ,
int width,
int height,
int depth)
CopyImageSubDataNV, except that the srcCtx and dstCtx parameters specify
the contexts in which to look up the source and destination objects, respectively. A value of NULL for either context indicates that the value which is
returned by GetCurrentContext should be used instead. Both contexts must share the same address space.display - the connection to the X serversrcCtx - the source contextdstCtx - the destination contextCopyright LWJGL. All Rights Reserved. License terms.