Ignore:
Timestamp:
09/04/06 08:56:26 (18 years ago)
Author:
mattausch
Message:
 
File:
1 moved

Legend:

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

    r1319 r1320  
    3232        // Null boxes always invisible 
    3333        if ( box.isNull() ) 
    34                 return KDNV_NONE; 
     34                return BVHNV_NONE; 
    3535 
    3636        // Make any pending updates to the calculated frustum planes 
     
    7575 
    7676                if ( all_outside ) 
    77                         return KDNV_NONE; 
     77                        return BVHNV_NONE; 
    7878        } 
    7979 
    8080        if ( all_inside ) 
    81                 return KDNV_FULL; 
     81                return BVHNV_FULL; 
    8282        else 
    83                 return KDNV_PART; 
     83                return BVHNV_PART; 
    8484} 
    8585 
     
    9494        if (mCullFrustum) 
    9595        { 
    96                 return mCullFrustum->isVisible(box, culledBy) ? KDNV_PART : KDNV_NONE; 
     96                return mCullFrustum->isVisible(box, culledBy) ? BVHNV_PART : BVHNV_NONE; 
    9797        } 
    9898        else 
    9999        { 
    100                 return Frustum::isVisible(box, culledBy) ? KDNV_PART : KDNV_NONE; 
     100                return Frustum::isVisible(box, culledBy) ? BVHNV_PART : BVHNV_NONE; 
    101101        } 
    102102} 
Note: See TracChangeset for help on using the changeset viewer.