| 115 | } |
| 116 | |
| 117 | void Viewer::winsize_callbackstatic(GLFWwindow* window, int w, int h) |
| 118 | { |
| 119 | Viewer* viewer = reinterpret_cast<Viewer*>(glfwGetWindowUserPointer(window)); |
| 120 | viewer->winsize_callback(window, w, h); |
| 121 | } |
| 122 | |
| 123 | void Viewer::winsize_callback(GLFWwindow* window, int w, int h) |
| 124 | { |
nothing calls this directly
no test coverage detected