| 118 | } |
| 119 | |
| 120 | static bool isParentAttachForPass( Attachment const * attach, FramePass const * pass ) |
| 121 | { |
| 122 | return pass->end() != std::find_if( pass->begin(), pass->end() |
| 123 | , [&attach]( auto const & lookup ) |
| 124 | { |
| 125 | return isAttachParent( lookup.second.parent, attach ); |
| 126 | } ); |
| 127 | } |
| 128 | |
| 129 | static void listNonParentAttachs( FramePassArray const & passes |
| 130 | , AttachmentArray const & allAttachs |
no test coverage detected