| 513 | } |
| 514 | |
| 515 | void Assets::queueImages(StringList const& paths) const { |
| 516 | queueAssets(paths.transformed([](String const& path) { |
| 517 | auto components = AssetPath::split(path); |
| 518 | validatePath(components, true, true); |
| 519 | |
| 520 | return AssetId{AssetType::Image, std::move(components)}; |
| 521 | })); |
| 522 | } |
| 523 | |
| 524 | void Assets::queueImages(CaseInsensitiveStringSet const& paths) const { |
| 525 | MutexLocker assetsLocker(m_assetsMutex); |
nothing calls this directly
no test coverage detected