MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / _getFileSystemFromList

Method _getFileSystemFromList

Engine/source/core/volume.cpp:474–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

472}
473
474FileSystemRef MountSystem::_getFileSystemFromList(const Path& path) const
475{
476 for (Vector<MountFS>::const_iterator itr = mMountList.begin(); itr != mMountList.end(); itr++)
477 {
478 if (itr->root.equal( path.getRoot(), String::NoCase ))
479 return itr->fileSystem;
480 }
481
482 return NULL;
483}
484
485
486Path MountSystem::_normalize(const Path& path)

Callers

nothing calls this directly

Calls 4

beginMethod · 0.45
endMethod · 0.45
equalMethod · 0.45
getRootMethod · 0.45

Tested by

no test coverage detected