Ignore:
Timestamp:
02/15/07 00:35:41 (17 years ago)
Author:
mattausch
Message:

implemented hashpvs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/SamplingStrategy.cpp

    r2076 r2116  
    569569 
    570570#if 1 
    571   cout<<"view cell cast time:"<<viewCellCastTimer.TotalTime()<<" s"<<endl; 
    572   cout<<"pvs time:"<<pvsTimer.TotalTime()<<" s"<<endl; 
    573   cout<<"halton time:"<<haltonTimer.TotalTime()<<" s"<<endl; 
    574   //  cout<<"obj time:"<<objTimer.TotalTime()<<" s"<<endl; 
     571  const float vcTime = viewCellCastTimer.TotalTime(); 
     572  const float pvsTime = pvsTimer.TotalTime(); 
     573  const float haltonTime = haltonTimer.TotalTime(); 
     574 
     575  cout << "view cell cast time: " << vcTime << " s" << endl; 
     576  cout << "pvs time: " << pvsTime << " s" << endl; 
     577  cout << "halton time: "<< haltonTime << " s" << endl; 
     578  // cout<<"obj time:"<<objTimer.TotalTime()<<" s"<<endl; 
     579 
     580  Debug << "view cell cast time: " << vcTime << " s" << endl; 
     581  Debug << "pvs time: " << pvsTime << " s" << endl; 
     582  Debug << "halton time: "<< haltonTime << " s" << endl; 
    575583#endif 
    576584} 
Note: See TracChangeset for help on using the changeset viewer.