Package org.lwjgl.opengl
Class GLX11
- java.lang.Object
-
- org.lwjgl.opengl.GLX
-
- org.lwjgl.opengl.GLX11
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.lwjgl.opengl.GLX
GLX.Functions
-
-
Field Summary
Fields Modifier and Type Field Description static int
GLX_EXTENSIONS
GLX_VENDOR
GLX_VERSIONNames for attributes toGetClientString
.-
Fields inherited from class org.lwjgl.opengl.GLX
GLX_ACCUM_ALPHA_SIZE, GLX_ACCUM_BLUE_SIZE, GLX_ACCUM_GREEN_SIZE, GLX_ACCUM_RED_SIZE, GLX_ALPHA_SIZE, GLX_AUX_BUFFERS, GLX_BAD_ATTRIBUTE, GLX_BAD_CONTEXT, GLX_BAD_ENUM, GLX_BAD_SCREEN, GLX_BAD_VALUE, GLX_BAD_VISUAL, GLX_BLUE_SIZE, GLX_BUFFER_SIZE, GLX_DEPTH_SIZE, GLX_DOUBLEBUFFER, GLX_GREEN_SIZE, GLX_LEVEL, GLX_NO_EXTENSION, GLX_RED_SIZE, GLX_RGBA, GLX_STENCIL_SIZE, GLX_STEREO, GLX_USE_GL, GLXBadContext, GLXBadContextState, GLXBadContextTag, GLXBadCurrentDrawable, GLXBadCurrentWindow, GLXBadDrawable, GLXBadFBConfig, GLXBadLargeRequest, GLXBadPbuffer, GLXBadPixmap, GLXBadRenderRequest, GLXBadWindow, GLXUnsupportedPrivateRequest
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
glXGetClientString(long display, int name)
Returns a pointer to a string describing some aspect of the client library.static java.lang.String
glXQueryExtensionsString(long display, int screen)
Returns a string describing which GLX extensions are supported on the connection.static java.lang.String
glXQueryServerString(long display, int screen, int name)
Returns a pointer to a string describing some aspect of the server's GLX extension.static long
nglXGetClientString(long display, int name)
Unsafe version of:GetClientString
static long
nglXQueryExtensionsString(long display, int screen)
Unsafe version of:QueryExtensionsString
static long
nglXQueryServerString(long display, int screen, int name)
Unsafe version of:QueryServerString
-
Methods inherited from class org.lwjgl.opengl.GLX
glXChooseVisual, glXChooseVisual, glXCopyContext, glXCreateContext, glXCreateGLXPixmap, glXDestroyContext, glXDestroyGLXPixmap, glXGetConfig, glXGetConfig, glXGetCurrentContext, glXGetCurrentDrawable, glXIsDirect, glXMakeCurrent, glXQueryExtension, glXQueryExtension, glXQueryVersion, glXQueryVersion, glXSwapBuffers, glXUseXFont, glXWaitGL, glXWaitX, nglXChooseVisual, nglXCreateContext, nglXCreateGLXPixmap, nglXGetConfig, nglXQueryExtension, nglXQueryVersion
-
-
-
-
Field Detail
-
GLX_VENDOR, GLX_VERSION, GLX_EXTENSIONS
Names for attributes toGetClientString
.
-
-
Method Detail
-
nglXQueryExtensionsString
public static long nglXQueryExtensionsString(long display, int screen)
Unsafe version of:QueryExtensionsString
-
glXQueryExtensionsString
@Nullable public static java.lang.String glXQueryExtensionsString(long display, int screen)
Returns a string describing which GLX extensions are supported on the connection.- Parameters:
display
- the connection to the X serverscreen
- the screen number
-
nglXGetClientString
public static long nglXGetClientString(long display, int name)
Unsafe version of:GetClientString
-
glXGetClientString
@Nullable public static java.lang.String glXGetClientString(long display, int name)
Returns a pointer to a string describing some aspect of the client library.- Parameters:
display
- the connection to the X servername
- the string to query
-
nglXQueryServerString
public static long nglXQueryServerString(long display, int screen, int name)
Unsafe version of:QueryServerString
-
glXQueryServerString
@Nullable public static java.lang.String glXQueryServerString(long display, int screen, int name)
Returns a pointer to a string describing some aspect of the server's GLX extension.- Parameters:
display
- the connection to the X serverscreen
- the screen numbername
- the string to query
-
-