blob: 1e07513cfd1eb4c810c5ef3611d03efda66f73e3 [file] [log] [blame]
package glfw
//#define GLFW_EXPOSE_NATIVE_WIN32
//#define GLFW_EXPOSE_NATIVE_WGL
//#define GLFW_INCLUDE_NONE
//#include <GLFW/glfw3.h>
//#include <GLFW/glfw3native.h>
import "C"
func (w *Window) GetWin32Window() C.HWND {
return C.glfwGetWin32Window(w.data)
}
func (w *Window) GetWGLContext() C.HGLRC {
return C.glfwGetWGLContext(w.data)
}