Return an error from all functions. See go-gl/glfw#8 All GLFW functions except glfwSetErrorCallback, glfwGetVersion, and glfwGetVersionString can generate errors via the GLFW error callback.
go get github.com/go-gl/glfw3 and be done (GLFW sources are included so you don't have to build GLFW on your own)!package main import ( "runtime" glfw "github.com/go-gl/glfw3" ) func init() { runtime.LockOSThread() } func main() { err := glfw.Init() if err != nil { panic(err) } defer glfw.Terminate() window, err := glfw.CreateWindow(640, 480, "Testing", nil, nil) if err != nil { panic(err) } window.MakeContextCurrent() for !window.ShouldClose() { // Do OpenGL stuff window.SwapBuffers() glfw.PollEvents() } }
Floating and AutoIconify window hints.go get installation (GLFW source code included in-repo and compiled in so you don‘t have to build GLFW on your own first and you don’t have to distribute shared libraries).