Package org.lwjgl.glfw
Class GLFWNativeWGL
- java.lang.Object
-
- org.lwjgl.glfw.GLFWNativeWGL
-
public class GLFWNativeWGL extends java.lang.Object
Native bindings to the GLFW library's WGL native access functions.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GLFWNativeWGL.Functions
Contains the function pointers loaded fromGLFW.getLibrary()
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static long
glfwGetWGLContext(long window)
Returns theHGLRC
of the specified window.
-
-
-
Method Detail
-
glfwGetWGLContext
public static long glfwGetWGLContext(long window)
Returns theHGLRC
of the specified window.Note: This function may be called from any thread. Access is not synchronized.
- Parameters:
window
- the GLFW window- Returns:
- The
HGLRC
of the specified window, orNULL
if an error occurred. - Since:
- version 3.0
-
-