Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix leak of temporary GL context on windows (#199)
Creating a modern OpenGL context on Windows requires first creating a temporary context, using it to load some function pointers (e.g. `wglCreateContextAttribsARB`), and then using those to create the actual context. In Baseview's case, the temporary context was not being deleted afterwards, resulting in a resource leak.
- Loading branch information