| 560 | } |
| 561 | |
| 562 | static bool isIn( FramePassGroupStreams const * inner |
| 563 | , FramePassGroupStreams const * outer ) |
| 564 | { |
| 565 | return outer == inner |
| 566 | || ( outer && isIn( inner, outer->getParent() ) ); |
| 567 | } |
| 568 | |
| 569 | static FramePassGroupStreams * getCommonGroup( FramePassGroupStreams * lhs |
| 570 | , FramePassGroupStreams const * rhs ) |
no test coverage detected