MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / AddDependency

Method AddDependency

Source/Engine/Threading/TaskGraph.cpp:29–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27}
28
29void TaskGraphSystem::AddDependency(TaskGraphSystem* system)
30{
31 CHECK(system);
32 if (_dependencies.Contains(system))
33 return;
34 system->_reverseDependencies.Add(this);
35 _dependencies.Add(system);
36}
37
38void TaskGraphSystem::RemoveDependency(TaskGraphSystem* system)
39{

Callers

nothing calls this directly

Calls 2

ContainsMethod · 0.45
AddMethod · 0.45

Tested by

no test coverage detected