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.h

    r3284 r3285  
    1111class Bvh; 
    1212 
     13#define USE_TIMESTAMPS 
     14 
    1315struct PvsEntry 
    1416{ 
    1517        PvsEntry(SceneEntity *ent, float t):  
    1618        mEntity(ent) 
    17         //, mTimeStamp(t)  
     19#ifdef USE_TIMESTAMPS 
     20        , mTimeStamp(t) 
     21#endif 
    1822        {} 
    1923 
     
    2428 
    2529        SceneEntity *mEntity; 
    26         //float mTimeStamp; 
     30#ifdef USE_TIMESTAMPS 
     31        float mTimeStamp; 
     32#endif 
    2733}; 
    2834 
Note: See TracChangeset for help on using the changeset viewer.