| 541 | } |
| 542 | |
| 543 | FramesSpecificationConstPtr Assets::imageFrames(String const& path) const { |
| 544 | auto components = AssetPath::split(path); |
| 545 | validatePath(components, false, false); |
| 546 | |
| 547 | MutexLocker assetsLocker(m_assetsMutex); |
| 548 | return bestFramesSpecification(path); |
| 549 | } |
| 550 | |
| 551 | AudioConstPtr Assets::audio(String const& path) const { |
| 552 | auto components = AssetPath::split(path); |
no test coverage detected