| 16 | } |
| 17 | |
| 18 | void SwitchNode::SetActiveChild(int32_t activeChild) |
| 19 | { |
| 20 | LogAssert( |
| 21 | activeChild == invalidChild || |
| 22 | (0 <= activeChild && activeChild < GetNumChildren()), |
| 23 | "Invalid active child specified."); |
| 24 | |
| 25 | mActiveChild = activeChild; |
| 26 | } |
| 27 | |
| 28 | void SwitchNode::GetVisibleSet(Culler& culler, |
| 29 | std::shared_ptr<Camera> const& camera, bool noCull) |
no outgoing calls
no test coverage detected