| 183 | } |
| 184 | |
| 185 | void Node::GetVisibleSet(Culler& culler, |
| 186 | std::shared_ptr<Camera> const& camera, bool noCull) |
| 187 | { |
| 188 | for (auto& child : mChild) |
| 189 | { |
| 190 | if (child) |
| 191 | { |
| 192 | child->OnGetVisibleSet(culler, camera, noCull); |
| 193 | } |
| 194 | } |
| 195 | } |
| 196 | |
| 197 |
no test coverage detected