Ignore:
Timestamp:
01/18/09 19:45:20 (15 years ago)
Author:
mattausch
Message:

working on viz for submission

File:
1 edited

Legend:

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

    r3284 r3285  
    1010bool operator<(const PvsEntry &a, const PvsEntry &b)  
    1111{ 
    12    //return a.mTimeStamp < b.mTimeStamp; 
     12#ifdef USE_TIMESTAMPS 
     13        return a.mTimeStamp < b.mTimeStamp; 
     14#else 
    1315        return true; 
     16#endif 
    1417} 
    1518 
     
    2932void Pvs::Sort() 
    3033{ 
     34        // TODO 
    3135} 
    3236 
Note: See TracChangeset for help on using the changeset viewer.