| 196 | } |
| 197 | |
| 198 | std::string WindowController::createLogString(GLFWvidmode const& videoMode) |
| 199 | { |
| 200 | std::stringstream ss; |
| 201 | ss << videoMode.width << " x " << videoMode.height << " @ " << videoMode.refreshRate << "Hz"; |
| 202 | return ss.str(); |
| 203 | } |
| 204 | |
| 205 | int WindowController::getFps() |
| 206 | { |
nothing calls this directly
no outgoing calls
no test coverage detected