Package org.lwjgl.opengl
Class GLXSGIMakeCurrentRead
- java.lang.Object
-
- org.lwjgl.opengl.GLXSGIMakeCurrentRead
-
public class GLXSGIMakeCurrentRead extends java.lang.Object
Native bindings to the GLX_SGI_make_current_read extension.The association of the current context with a drawable is extended to allow separate write and read drawables. This paves the way for allowing preprocessing of image data in an "off screen" window which is then read into the visible window for final display. Similarly it sets the frame-work for direct transfer of video to the GL, by treating the video as a special kind of read drawable (a.k.a, readable).
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static long
glXGetCurrentReadDrawableSGI()
Returns the name of theGLXDrawable
currently being used as a pixel query source.static int
glXMakeCurrentReadSGI(long display, long draw, long read, long ctx)
Associates twoGLXDrawables
with the current rendering context.
-
-
-
Method Detail
-
glXMakeCurrentReadSGI
public static int glXMakeCurrentReadSGI(long display, long draw, long read, long ctx)
Associates twoGLXDrawables
with the current rendering context.- Parameters:
display
- the connection to the X serverdraw
- the draw drawableread
- the read drawablectx
- the current context
-
glXGetCurrentReadDrawableSGI
public static long glXGetCurrentReadDrawableSGI()
Returns the name of theGLXDrawable
currently being used as a pixel query source.
-
-