| 345 | } |
| 346 | |
| 347 | void AssetsCache::GetAllByTypeName(const StringView& typeName, Array<Guid>& result) const |
| 348 | { |
| 349 | PROFILE_CPU(); |
| 350 | ASSETS_CACHE_LOCK(); |
| 351 | for (auto i = _registry.Begin(); i.IsNotEnd(); ++i) |
| 352 | { |
| 353 | if (i->Value.Info.TypeName == typeName) |
| 354 | result.Add(i->Key); |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | #if ASSETS_CACHE_EDITABLE |
| 359 |
no test coverage detected