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

Method RemoveDependency

Source/Engine/Threading/TaskGraph.cpp:38–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38void TaskGraphSystem::RemoveDependency(TaskGraphSystem* system)
39{
40 CHECK(system);
41 if (!_dependencies.Contains(system))
42 return;
43 system->_reverseDependencies.Remove(this);
44 _dependencies.Remove(system);
45}
46
47void TaskGraphSystem::PreExecute(TaskGraph* graph)
48{

Callers

nothing calls this directly

Calls 2

ContainsMethod · 0.45
RemoveMethod · 0.45

Tested by

no test coverage detected