#include "CullingManager.h" namespace GtpVisibility { //----------------------------------------------------------------------- CullingManager::CullingManager(HierarchyInterface *hierarchyInterface): mHierarchyInterface(hierarchyInterface), mVisibilityThreshold(0), mNumQueryCulledNodes(0), mNumFrustumCulledNodes(0) { } //----------------------------------------------------------------------- void CullingManager::SetHierarchyInterface(HierarchyInterface *hierarchyInterface) { mHierarchyInterface = hierarchyInterface; } } // namespace GtpVisibility