Callback to handle GLFW errors
| 13 | |
| 14 | // Callback to handle GLFW errors |
| 15 | void glfw_error_callback(int error, const char* description) { std::cerr << "GLFW Error " << error << ": " << description << std::endl; } |
| 16 | |
| 17 | int main() { |
| 18 | // Setup error callback |
nothing calls this directly
no outgoing calls
no test coverage detected