You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (auto dependent : dependents[node]) {
visit(dependent);
}
However doesn't that mean that the dependents will be executed first, before the pass that they depend on has executed. Shouldn't this be looping on dependencies?
In this page:
https://docs.vulkan.org/tutorial/latest/Building_a_Simple_Engine/Engine_Architecture/05_rendering_pipeline.html#_rendergraph_dependency_analysis_and_execution_ordering
It's doing
However doesn't that mean that the dependents will be executed first, before the pass that they depend on has executed. Shouldn't this be looping on
dependencies?