| 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 |
no test coverage detected