| 297 | } |
| 298 | |
| 299 | static void UnmarkPathInProgress(ResourcePreloader* preloader, const PathDescriptor* path_descriptor) |
| 300 | { |
| 301 | dmhash_t path_hash = path_descriptor->m_CanonicalPathHash; |
| 302 | assert(preloader->m_InProgress.Get(path_hash) != 0x0); |
| 303 | preloader->m_InProgress.Erase(path_hash); |
| 304 | } |
| 305 | |
| 306 | static void PreloaderTreeInsert(ResourcePreloader* preloader, TRequestIndex index, TRequestIndex parent) |
| 307 | { |
no test coverage detected