| 83 | namespace |
| 84 | { |
| 85 | void glfwErrorCallback(int error, const char* description) |
| 86 | { |
| 87 | throw std::runtime_error("Glfw error " + std::to_string(error) + ": " + description); |
| 88 | } |
| 89 | |
| 90 | void framebufferSizeCallback(GLFWwindow* window, int width, int height) |
| 91 | { |
nothing calls this directly
no test coverage detected