| 164 | |
| 165 | |
| 166 | void RenderLayer::ApplyToFlowGraph(Ref<FlowGraph> graph) |
| 167 | { |
| 168 | for (auto node: graph->GetNodes()) |
| 169 | { |
| 170 | auto lines = node->GetLines(); |
| 171 | if (node->GetBasicBlock()) |
| 172 | { |
| 173 | ApplyToBlock(node->GetBasicBlock(), lines); |
| 174 | } |
| 175 | node->SetLines(lines); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | |
| 180 | void RenderLayer::ApplyToLinearViewObject( |
no test coverage detected