| 2646 | } |
| 2647 | |
| 2648 | void SceneCache::hash( HashType hashType, double time, MurmurHash &h ) const |
| 2649 | { |
| 2650 | SceneInterface::hash( hashType, time, h ); |
| 2651 | |
| 2652 | ReaderImplementation *reader = ReaderImplementation::reader( m_implementation.get() ); |
| 2653 | reader->hash( hashType, time, h ); |
| 2654 | } |
| 2655 | |
| 2656 | SceneCachePtr SceneCache::duplicate( ImplementationPtr& impl ) const |
| 2657 | { |
no test coverage detected