Package org.lwjgl.glfw
Class GLFWNativeWGL
java.lang.Object
org.lwjgl.glfw.GLFWNativeWGL
Native bindings to the GLFW library's WGL native access functions.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classContains the function pointers loaded fromGLFW.getLibrary(). -
Method Summary
Modifier and TypeMethodDescriptionstatic longglfwGetWGLContext(long window) Returns theHGLRCof the specified window.static voidOverrides the OpenGL shared library that GLFW loads internally.static voidsetPath(org.lwjgl.system.FunctionProvider sharedLibrary) CallssetPath(String)with the path of the specifiedSharedLibrary.
-
Method Details
-
glfwGetWGLContext
public static long glfwGetWGLContext(long window) Returns theHGLRCof the specified window.The
HDCassociated with the window can be queried with the GetDC function.HDC dc = GetDC(glfwGetWin32Window(window));This DC is private and does not need to be released.Note: This function may be called from any thread. Access is not synchronized.
- Parameters:
window- the GLFW window- Returns:
- the
HGLRCof the specified window, orNULLif an error occurred.Possible errors include
NO_WINDOW_CONTEXTandNOT_INITIALIZED. - Since:
- version 3.0
-
setPath
public static void setPath(org.lwjgl.system.FunctionProvider sharedLibrary) CallssetPath(String)with the path of the specifiedSharedLibrary.Example usage:
GLFWNativeWGL.setPath(GL.getFunctionProvider());- Parameters:
sharedLibrary- aFunctionProviderinstance that will be cast toSharedLibrary
-
setPath
Overrides the OpenGL shared library that GLFW loads internally.This is useful when there's a mismatch between the shared libraries loaded by LWJGL and GLFW.
This method must be called before GLFW initializes OpenGL. The override is available only in the default GLFW build bundled with LWJGL. Using the override with a custom GLFW build will produce a warning in
DEBUGmode (but not an error).- Parameters:
path- the OpenGL shared library path, ornullto remove the override.
-