| 273 | #endif |
| 274 | |
| 275 | std::string toString(const float pVal, const std::string pFormat) |
| 276 | { |
| 277 | std::unique_ptr<char> label(new char[std::to_string(pVal).length()+1]); |
| 278 | |
| 279 | sprintf(label.get(), pFormat.c_str(), pVal); |
| 280 | |
| 281 | return std::string(label.get()); |
| 282 | } |
| 283 | |
| 284 | GLuint screenQuadVBO(const int pWindowId) |
| 285 | { |
no test coverage detected