MCPcopy Create free account
hub / github.com/davideberly/GeometricTools / GetVisibleSet

Method GetVisibleSet

GTE/Graphics/SwitchNode.cpp:28–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26}
27
28void SwitchNode::GetVisibleSet(Culler& culler,
29 std::shared_ptr<Camera> const& camera, bool noCull)
30{
31 if (mActiveChild > invalidChild)
32 {
33 // All Visual objects in the active subtree are added to the
34 // visible set.
35 auto const& child = mChild[mActiveChild];
36 if (child)
37 {
38 child->OnGetVisibleSet(culler, camera, noCull);
39 }
40 }
41}
42
43

Callers

nothing calls this directly

Calls 1

OnGetVisibleSetMethod · 0.80

Tested by

no test coverage detected