Changeset 1610 for GTP/trunk/Lib/Vis/Preprocessing/src/BvHierarchy.cpp
- Timestamp:
- 10/11/06 05:35:33 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/BvHierarchy.cpp
r1580 r1610 544 544 inline bool BvHierarchy::GlobalTerminationCriteriaMet(const BvhTraversalData &data) const 545 545 { 546 // note: tracking for global cost termination 547 // does not make much sense for interleaved vsp / osp partition 548 // as it is the responsibility of the hierarchy manager 549 546 550 const bool terminationCriteriaMet = 547 551 (0 548 552 || (mBvhStats.Leaves() >= mTermMaxLeaves) 549 // does not make much sense for interleaved vsp / osp partition550 553 //|| (mBvhStats.mGlobalCostMisses >= mTermGlobalCostMissTolerance) 551 554 //|| mOutOfMemory 552 555 ); 553 556 554 if ( 0&& terminationCriteriaMet)557 if (1 && terminationCriteriaMet) 555 558 { 556 559 Debug << "bvh global termination criteria met:" << endl;
Note: See TracChangeset
for help on using the changeset viewer.