Ignore:
Timestamp:
11/28/06 19:46:36 (18 years ago)
Author:
bittner
Message:

global lines support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/GlRenderer.h

    r1785 r1824  
    5656}; 
    5757 
     58        struct PvsCache { 
     59                PvsCache():mViewCell(NULL) {} 
     60                void Reset() { mViewCell = NULL; mPvs.Clear(); filteredBoxes.clear(); } 
     61                ViewCell *mViewCell; 
     62                ObjectPvs mPvs; 
     63                vector<AxisAlignedBox3> filteredBoxes; 
     64        }; 
     65 
     66 
    5867struct RenderCostSample { 
    5968 
     
    147156protected: 
    148157 
     158        PvsCache mPvsCache; 
    149159 
    150160  vector<OcclusionQuery *> mOcclusionQueries; 
Note: See TracChangeset for help on using the changeset viewer.