| 28 | } |
| 29 | |
| 30 | std::string Utility::getMediaPosterPath(const c2d::Io::File &file) { |
| 31 | std::string hash = std::to_string(std::hash<std::string>()(file.path)); |
| 32 | return c2d_renderer->getIo()->getDataPath() + "cache/" + hash + "-poster.jpg"; |
| 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)); |
nothing calls this directly
no test coverage detected