Ignore:
Timestamp:
05/11/05 15:29:32 (19 years ago)
Author:
mattausch
Message:

exchanged halfbounding box with full bounding box

Location:
trunk/VUT/GtpVisibility/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibility/src/StopAndWaitCullingManager.cpp

    r87 r92  
    3939 
    4040                        mHierarchyInterface->IssueOcclusionQuery(node)->GetQueryResult(visiblePixels, true); 
    41  
     41                         
    4242                        // node visible 
    4343                        if (visiblePixels > mVisibilityThreshold) 
  • trunk/VUT/GtpVisibility/src/VisibilityManager.cpp

    r74 r92  
    3030        if (mCullingManagerType != ocmType) 
    3131        { 
    32                 mCullingManagerType = ocmType; 
     32                // delete old culling manager 
    3333                delete mCullingManager; 
    3434 
     35                mCullingManagerType = ocmType; 
     36                 
    3537                switch (ocmType) 
    3638                { 
     
    6870        mCullingManager->RenderScene(); 
    6971} 
     72VisibilityEnvironment::CullingManagerType VisibilityManager::GetCullingManagerType() 
     73{ 
     74        return mCullingManagerType; 
     75} 
    7076//----------------------------------------------------------------------- 
    7177} // namespace GtpVisibility 
Note: See TracChangeset for help on using the changeset viewer.