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

Method _getFileSystemFromList

Engine/source/core/volume.cpp:544–553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

542}
543
544FileSystemRef MountSystem::_getFileSystemFromList(const Path& path) const
545{
546 for (Vector<MountFS>::const_iterator itr = mMountList.begin(); itr != mMountList.end(); itr++)
547 {
548 if (itr->root.equal( path.getRoot(), String::NoCase ))
549 return itr->fileSystem;
550 }
551
552 return NULL;
553}
554
555
556Path 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