OpenGL (ES)
Creating GLFW contexts for OpenGL and OpenGL ES
Last updated
Was this helpful?
Creating GLFW contexts for OpenGL and OpenGL ES
Last updated
Was this helpful?
After window creation, the created OpenGL context object needs to be made the current context by calling glfwMakeContextCurrent(window)
. This binds the context object to the current thread. In situations where multithreading is required, a has to bee created. The current context can be retrieved with glfwGetCurrentContext
, which returns the window containing the .
The first step of working with OpenGL would now be to create the OpenGL capabilities by calling glCreateCapabilities
.
TODO (see for now)