| 32 | { |
| 33 | |
| 34 | void initWindowToolkit() |
| 35 | { |
| 36 | if (!glfwInit()) { |
| 37 | std::cerr << "ERROR: GLFW wasn't able to initalize\n"; |
| 38 | GLFW_THROW_ERROR("GLFW initilization failed", FG_ERR_GL_ERROR); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | void destroyWindowToolkit() |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected