Ignore:
Timestamp:
11/12/08 17:56:47 (16 years ago)
Author:
mattausch
Message:

working on ssao for dynamic objects, found error with tight bounds

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/BvhLoader.cpp

    r3074 r3123  
    6464Bvh *BvhLoader::Load(const string &filename,   
    6565                                         const SceneEntityContainer &staticEntities, 
    66                                          const SceneEntityContainer &dynamicEntities) 
     66                                         const SceneEntityContainer &dynamicEntities, 
     67                                         int maxDepthForTestingChildren) 
    6768{ 
    6869        queue<BvhNode *> tQueue; 
     
    7374        cout << "loading bvh" << endl; 
    7475 
    75         Bvh *bvh = new Bvh(staticEntities, dynamicEntities); 
     76        Bvh *bvh = new Bvh(staticEntities, dynamicEntities, maxDepthForTestingChildren); 
    7677 
    7778        BvhNode *root = LoadNextNode(stream, NULL); 
Note: See TracChangeset for help on using the changeset viewer.