Changeset 1290 for GTP


Ignore:
Timestamp:
08/28/06 13:58:58 (18 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/HillyTerrain/OGRE/TerrainFrameListener.cpp

    r1275 r1290  
    12041204                // call once to load view cell loading overlay 
    12051205                mWindow->update(); 
    1206                 LogManager::getSingleton().logMessage("here5"); 
    12071206                mViewCellsLoaded = mApplication->LoadViewCells(mApplication->mViewCellsFilename); 
    12081207                 
     
    12141213                } 
    12151214 
    1216                 LogManager::getSingleton().logMessage("here82"); 
    12171215                mLoadingOverlay->hide(); 
    12181216        } 
  • GTP/trunk/Lib/Vis/Preprocessing/src/VspTree.cpp

    r1289 r1290  
    16111611                        BvhLeaf *oLeaf = mHierarchyManager->mBvHierarchy->GetLeaf(ray->mOriginObject); 
    16121612 
    1613                         UpdateBvNodePvsContri(tLeaf, cf, pvsFront, pvsBack, totalPvs); 
    1614                         UpdateBvNodePvsContri(oLeaf, cf, pvsFront, pvsBack, totalPvs); 
     1613                        UpdateBvhLeafPvsContri(tLeaf, cf, pvsFront, pvsBack, totalPvs); 
     1614                        UpdateBvhLeafPvsContri(oLeaf, cf, pvsFront, pvsBack, totalPvs); 
    16151615                         
    16161616                        break; 
     
    17861786{ 
    17871787        if (!leaf) return; 
    1788  
     1788/* 
    17891789        const int renderCost = (int)leaf->mObjects.size(); 
    17901790 
     
    18151815        if (cf <= 0) // back pvs 
    18161816        { 
    1817                 if (!leaf->Mailed(1) && !obj->Mailed(2)) 
     1817                if (!leaf->Mailed(1) && !leaf->Mailed(2)) 
    18181818                { 
    18191819                        backPvs += renderCost; 
     
    18251825                                leaf->Mail(1); 
    18261826                } 
    1827         } 
     1827        }*/ 
    18281828} 
    18291829 
Note: See TracChangeset for help on using the changeset viewer.