MCPcopy Create free account
hub / github.com/DragonJoker/RenderGraph / getCommonGroup

Function getCommonGroup

source/RenderGraph/DotExport.cpp:569–580  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

567 }
568
569 static FramePassGroupStreams * getCommonGroup( FramePassGroupStreams * lhs
570 , FramePassGroupStreams const * rhs )
571 {
572 auto current = lhs;
573
574 while ( current && !isIn( current, rhs ) )
575 {
576 current = current->getParent();
577 }
578
579 return current;
580 }
581
582 template< typename TransitionT >
583 static void displayTransitionEdge( std::ostream & stream

Callers 1

displayTransitionEdgeFunction · 0.85

Calls 2

isInFunction · 0.85
getParentMethod · 0.45

Tested by

no test coverage detected