| 290 | } |
| 291 | |
| 292 | static void MarkPathInProgress(ResourcePreloader* preloader, const PathDescriptor* path_descriptor) |
| 293 | { |
| 294 | dmhash_t path_hash = path_descriptor->m_CanonicalPathHash; |
| 295 | assert(preloader->m_InProgress.Get(path_hash) == 0x0); |
| 296 | preloader->m_InProgress.Put(path_hash, true); |
| 297 | } |
| 298 | |
| 299 | static void UnmarkPathInProgress(ResourcePreloader* preloader, const PathDescriptor* path_descriptor) |
| 300 | { |
no test coverage detected