Ignore:
Timestamp:
03/22/07 18:51:14 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/src/RandomUpdateCullingManager.cpp

    r2280 r2281  
    3333        ///////////// 
    3434        //-- PART 1: process finished occlusion queries 
    35         CullingLogManager::GetSingleton()->LogMessage("here55"); 
     35         
    3636        while (!mHierarchyInterface->GetQueue()->empty() || !queryQueue.empty()) 
    3737        { 
     
    111111                                { 
    112112                                        if (mHierarchyInterface->IsNodeVisible(node)) 
    113                                                 Ogre::LogManager::getSingleton().logMessage("u"); 
     113                                                CullingLogManager::GetSingleton()->LogMessage("u"); 
    114114                                        else 
    115                                                 Ogre::LogManager::getSingleton().logMessage("g"); 
     115                                                CullingLogManager::GetSingleton()->LogMessage("g"); 
    116116                                } 
    117117                                 
    118118                                if (mHierarchyInterface->IsNodeFullyVisible(node)) 
    119                                 {Ogre::LogManager::getSingleton().logMessage("here8"); 
     119                                { 
     120                                        CullingLogManager::GetSingleton()->LogMessage("here8"); 
    120121                                        // node fully visible => test only random leaves 
    121122                                        for (int i = 0; i < mRandomCandidates; ++ i) 
    122123                                        { 
    123                                                 Ogre::LogManager::getSingleton().logMessage("z"); 
     124                                                CullingLogManager::GetSingleton()->LogMessage("z"); 
    124125                                                HierarchyNode *randomLeaf = mHierarchyInterface->GetRandomLeaf(node); 
     126                                                CullingLogManager::GetSingleton()->LogMessage("c"); 
     127                                                if (!randomLeaf) 
     128                                                        continue; 
    125129 
    126130                                                mHierarchyInterface->SetNodeVisible(randomLeaf, false); 
     
    133137                                                        mHierarchyInterface->IssueNodeOcclusionQuery(node))); 
    134138                                                 
     139                                                        CullingLogManager::GetSingleton()->LogMessage("a"); 
    135140                                                mHierarchyInterface->TraverseNode2(node); 
     141                                                        CullingLogManager::GetSingleton()->LogMessage("b"); 
    136142                                        } 
    137143 
Note: See TracChangeset for help on using the changeset viewer.