| 33 | } |
| 34 | |
| 35 | std::string Utility::getMediaBackdropPath(const c2d::Io::File &file) { |
| 36 | std::string hash = std::to_string(std::hash<std::string>()(file.path)); |
| 37 | return c2d_renderer->getIo()->getDataPath() + "cache/" + hash + "-backdrop.jpg"; |
| 38 | } |
| 39 | |
| 40 | std::vector<std::string> Utility::getMediaExtensions() { |
| 41 | return { |
nothing calls this directly
no test coverage detected