Package org.lwjgl.glfw
Class GLFWNativeGLX
- java.lang.Object
-
- org.lwjgl.glfw.GLFWNativeGLX
-
public class GLFWNativeGLX extends java.lang.ObjectNative bindings to the GLFW library's GLX native access functions.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static classGLFWNativeGLX.FunctionsContains the function pointers loaded fromGLFW.getLibrary().
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static longglfwGetGLXContext(long window)Returns theGLXContextof the specified window.static longglfwGetGLXWindow(long window)Returns theGLXWindowof the specified window.
-
-
-
Method Detail
-
glfwGetGLXContext
public static long glfwGetGLXContext(long window)
Returns theGLXContextof the specified window.This function may be called from any thread. Access is not synchronized.
- Parameters:
window- a GLFW window- Returns:
- the
GLXContextof the specified window, orNULLif an error occurred. - Since:
- version 3.0
-
glfwGetGLXWindow
public static long glfwGetGLXWindow(long window)
Returns theGLXWindowof the specified window.This function may be called from any thread. Access is not synchronized.
- Parameters:
window- a GLFW window- Returns:
- the
GLXWindowof the specified window, orNoneif an error occurred. - Since:
- version 3.2
-
-