| 49 | { |
| 50 | |
| 51 | struct ChangeCurrentOpenGLContext |
| 52 | { |
| 53 | GLFWwindow *last_ctx; |
| 54 | |
| 55 | ChangeCurrentOpenGLContext(GLFWwindow *new_context); |
| 56 | ~ChangeCurrentOpenGLContext(); |
| 57 | }; |
| 58 | |
| 59 | ChangeCurrentOpenGLContext::ChangeCurrentOpenGLContext(GLFWwindow *new_context) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected