| 123 | namespace |
| 124 | { |
| 125 | std::string createVideoModeString(GLFWvidmode const& videoMode) |
| 126 | { |
| 127 | std::stringstream ss; |
| 128 | ss << videoMode.width << " x " << videoMode.height << " @ " << videoMode.refreshRate << "Hz"; |
| 129 | return ss.str(); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | std::vector<std::string> DisplaySettingsDialog::createVideoModeStrings() const |
no outgoing calls
no test coverage detected