Changeset 516


Ignore:
Timestamp:
01/11/06 15:50:37 (18 years ago)
Author:
bittner
Message:

per object rss tree support - changes in glrenderer.cpp so tha it compiles; unix2dos on glrenderer.*

Location:
trunk/VUT/GtpVisibilityPreprocessor/src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/Environment.cpp

    r511 r516  
    16491649        RegisterOption("RssTree.maxRays", optInt, "rss_max_rays=", "2000000"); 
    16501650 
     1651        RegisterOption("RssTree.perObjectTree", optBool, "rss_per_object_tree", "false"); 
     1652 
    16511653        RegisterOption("RssPreprocessor.Export.pvs", optBool, "rss_export_pvs", "false"); 
    16521654        RegisterOption("RssPreprocessor.Export.rssTree", optBool, "rss_export_rss_tree", "false"); 
  • trunk/VUT/GtpVisibilityPreprocessor/src/GlRenderer.cpp

    r513 r516  
    406406{ 
    407407  static int glList = -1; 
    408   if (glList != -1) { 
    409         glCallList(glList); 
    410   } else { 
     408  if (glList == -1) { 
    411409        glList = glGenLists(1); 
    412         glNewList(glList, GL_COMPILE_AND_EXECUTE); 
     410        glNewList(glList, GL_COMPILE); 
    413411        ObjectContainer::const_iterator oi = mObjects.begin(); 
    414412        for (; oi != mObjects.end(); oi++) 
     
    416414        glEndList(); 
    417415  } 
     416  glCallList(glList); 
    418417  return true; 
    419418} 
     
    571570                                                                                           Beam &beam, 
    572571                                                                                           const int desiredSamples, 
    573                                                                                            BeamSampleStatistics &stat) 
     572                                                                                           GlRendererBuffer::BeamSampleStatistics &stat) 
    574573{ 
    575574        // TODO: should not be done every time here 
     
    607606                 
    608607                SampleViewpointContributions(sourceObject, 
     608                                                                         viewPoint, 
    609609                                                                         beam, 
    610610                                                                         directionalSamples, 
     
    624624 
    625625void GlRendererBuffer::SampleViewpointContributions(Intersectable *sourceObject, 
     626                                                                                                        const Vector3 viewPoint, 
    626627                                                                                                        Beam &beam, 
    627628                                                                                                        const int desiredSamples, 
  • trunk/VUT/GtpVisibilityPreprocessor/src/Makefile

    r507 r516  
    11############################################################################# 
    22# Makefile for building: preprocessor 
    3 # Generated by qmake (2.00a) (Qt 4.1.0) on: so 7. I 10:49:27 2006 
     3# Generated by qmake (2.00a) (Qt 4.1.0) on: st 11. I 15:48:57 2006 
    44# Project:  preprocessor.pro 
    55# Template: app 
  • trunk/VUT/GtpVisibilityPreprocessor/src/RssPreprocessor.cpp

    r508 r516  
    1515static bool useViewSpaceBox = true; 
    1616static bool use2dSampling = false; 
     17 
     18 
     19// not supported anymore! 
    1720static bool fromBoxVisibility = false; 
    1821 
     
    644647  if (mUseImportanceSampling) { 
    645648         
    646         if (fromBoxVisibility) 
    647           rssTree->Construct(mVssRays, mViewSpaceBox); 
    648         else 
    649           rssTree->Construct(mVssRays, NULL); 
     649        //      if (fromBoxVisibility) 
     650        //        rssTree->Construct(mObjects, mVssRays, mViewSpaceBox); 
     651        //      else 
     652        rssTree->Construct(mObjects, mVssRays); 
    650653 
    651654        rssTree->stat.Print(mStats); 
  • trunk/VUT/GtpVisibilityPreprocessor/src/RssTree.cpp

    r507 r516  
    163163  environment->GetIntValue("RssTree.maxRays", mMaxRays); 
    164164 
    165   root = NULL; 
     165  environment->GetBoolValue("RssTree.perObjectTree", mPerObjectTree); 
     166   
     167  //  mRoots; 
    166168   
    167169  splitCandidates = new vector<SortableEntry>; 
     
    171173RssTree::~RssTree() 
    172174{ 
    173   if (root) 
    174     delete root; 
     175  for (int i=0; i < mRoots.size(); i++) 
     176        if (mRoots[i]) 
     177          delete mRoots[i]; 
    175178} 
    176179 
     
    301304void 
    302305RssTree::Construct( 
    303                                    VssRayContainer &rays, 
     306                                   ObjectContainer &objects, 
     307                                   VssRayContainer &rays 
    304308                                   // forced bounding box is only used when computing from-box 
    305309                                   // visibility 
    306                                    AxisAlignedBox3 *forcedBoundingBox 
     310                                   //                              AxisAlignedBox3 *forcedBoundingBox 
    307311                                   ) 
    308312{ 
     313  cout<<"Constructing rss tree"<<endl<<flush; 
    309314  stat.Start(); 
    310315   
    311316  maxMemory = maxStaticMemory; 
    312317 
    313   if (root) 
    314     delete root; 
    315  
    316    
    317   root = new RssTreeLeaf(NULL, rays.size()); 
    318   // first construct a leaf that will get subdivide 
    319   RssTreeLeaf *leaf = (RssTreeLeaf *) root; 
    320  
    321   stat.nodes = 1; 
    322    
    323   bbox.Initialize(); 
    324   dirBBox.Initialize(); 
    325  
    326  
    327   mForcedBoundingBox = forcedBoundingBox; 
     318  //  if (root) 
     319  //    delete root; 
     320 
     321  if (mPerObjectTree) { 
     322        // get max id from the rays 
     323        int i; 
     324        mRoots.resize(objects.size()); 
     325        for (i = 0; i < objects.size(); i++) { 
     326          RssTreeLeaf *leaf = new RssTreeLeaf(NULL, 0); 
     327          //      leaf->bbox.Initialize(); 
     328          leaf->dirBBox.Initialize(); 
     329          leaf->dirBBox.SetMin(2, 0.0f); 
     330          leaf->dirBBox.SetMax(2, 1.0f); 
     331           
     332          mRoots[i] = leaf; 
     333        } 
     334        // init spatial bounding boxes 
     335        for (i = 0; i < objects.size(); i++) { 
     336          GetRoot(objects[i])->bbox = objects[i]->GetBox(); 
     337        } 
     338 
     339        stat.nodes = i; 
     340  } else { 
     341        mRoots.resize(1); 
     342        RssTreeLeaf *leaf = new RssTreeLeaf(NULL, rays.size()); 
     343        leaf->bbox.Initialize(); 
     344        leaf->dirBBox.Initialize(); 
     345        leaf->dirBBox.SetMin(2, 0.0f); 
     346        leaf->dirBBox.SetMax(2, 1.0f); 
     347        mRoots[0] = leaf; 
     348        stat.nodes = 1; 
     349  } 
     350 
    328351  for(VssRayContainer::const_iterator ri = rays.begin(); 
    329       ri != rays.end(); 
    330       ri++) { 
    331                  
    332         RssTreeNode::RayInfo info(*ri); 
    333         if (forcedBoundingBox) 
    334           if (!ClipRay(info, *forcedBoundingBox)) 
    335                 continue; 
    336  
    337         leaf->AddRay(info); 
    338                  
    339     bbox.Include((*ri)->GetOrigin()); 
    340     bbox.Include((*ri)->GetTermination()); 
    341      
    342                  
    343         dirBBox.Include(Vector3( 
    344                                                         (*ri)->GetDirParametrization(0), 
    345                                                         (*ri)->GetDirParametrization(1), 
    346                                                         0 
    347                                                         ) 
    348                                         ); 
    349   } 
    350    
     352          ri != rays.end(); 
     353          ri++) { 
     354         
     355          RssTreeNode::RayInfo info(*ri); 
     356           
     357          // first construct a leaf that will get subdivide 
     358          RssTreeLeaf *leaf = (RssTreeLeaf *) GetRoot(info.GetObject()); 
     359 
     360          leaf->AddRay(info); 
     361           
     362          // leaf bbox contains bbox of origins only 
     363          leaf->bbox.Include((*ri)->GetOrigin()); 
     364           
     365          // include both origin and terminatin in the global bbox 
     366          bbox.Include((*ri)->GetOrigin()); 
     367          bbox.Include((*ri)->GetTermination()); 
     368           
     369          Vector3 dVec = Vector3( 
     370                                                         (*ri)->GetDirParametrization(0), 
     371                                                         (*ri)->GetDirParametrization(1), 
     372                                                         0 
     373                                                         ); 
     374 
     375          leaf->dirBBox.Include(dVec); 
     376          dirBBox.Include(dVec); 
     377  } 
     378 
    351379  // make the z axis (unused) a unit size 
    352380  // important for volume computation 
    353   dirBBox.SetMin(2, 0.0f); 
    354   dirBBox.SetMax(2, 1.0f); 
    355    
    356   if ( forcedBoundingBox )  
    357         bbox = *forcedBoundingBox; 
    358          
     381 
     382   
     383  //  if ( forcedBoundingBox )  
     384  //    bbox = *forcedBoundingBox; 
     385   
    359386  cout<<"Bbox = "<<bbox<<endl; 
    360387  cout<<"Dirr Bbox = "<<dirBBox<<endl; 
    361  
    362   stat.rays = leaf->rays.size(); 
    363   UpdatePvsSize(leaf); 
    364  
    365   stat.initialPvsSize = leaf->GetPvsSize(); 
    366   // Subdivide(); 
    367   root = Subdivide(TraversalData(leaf, bbox, 0)); 
    368  
     388   
     389  stat.rays = rays.size(); 
     390  stat.initialPvsSize = 0; 
     391  for (int i=0; i < mRoots.size(); i++) { 
     392        RssTreeLeaf *leaf = (RssTreeLeaf *)mRoots[i]; 
     393        stat.initialPvsSize += leaf->GetPvsSize(); 
     394        UpdatePvsSize(leaf); 
     395        mRoots[i] = Subdivide(TraversalData(leaf, GetBBox(leaf), 0)); 
     396  } 
     397   
    369398  if (splitCandidates) { 
    370399    // force realease of this vector 
     
    386415  //  stack<TraversalData> tStack; 
    387416   
    388   tStack.push(TraversalData(root, bbox, 0)); 
    389          
     417  //  tStack.push(TraversalData(root, bbox, 0)); 
     418  PushRoots(tStack); 
     419                         
    390420  AxisAlignedBox3 backBox; 
    391421  AxisAlignedBox3 frontBox; 
     
    10711101  node->axis = axis; 
    10721102  node->position = info.position; 
    1073   node->bbox = box; 
    1074   node->dirBBox = GetDirBBox(leaf); 
    1075    
    1076   backBBox = box; 
    1077   frontBBox = box; 
     1103  //  node->bbox = box; 
     1104  //  node->dirBBox = GetDirBBox(leaf); 
     1105   
    10781106   
    10791107  RssTreeLeaf *back = new RssTreeLeaf(node, info.raysBack); 
    10801108  RssTreeLeaf *front = new RssTreeLeaf(node, info.raysFront); 
    10811109 
     1110   
    10821111  // update halton generator 
    10831112  back->halton.index = leaf->halton.index; 
     
    10891118  // and setup child links 
    10901119  node->SetupChildLinks(back, front); 
    1091          
     1120 
     1121  back->bbox = leaf->bbox; 
     1122  front->bbox = leaf->bbox; 
     1123  back->dirBBox = leaf->dirBBox; 
     1124  front->dirBBox = leaf->dirBBox; 
     1125   
    10921126  if (axis <= RssTreeNode::SPLIT_Z) { 
    1093         backBBox.SetMax(axis, info.position); 
    1094     frontBBox.SetMin(axis, info.position); 
    1095   } 
    1096  
     1127        back->bbox.SetMax(axis, info.position); 
     1128    front->bbox.SetMin(axis, info.position); 
     1129  } else { 
     1130        back->dirBBox.SetMax(axis-3, info.position); 
     1131    front->dirBBox.SetMin(axis-3, info.position); 
     1132  } 
     1133   
    10971134  for(RssTreeNode::RayInfoContainer::iterator ri = leaf->rays.begin(); 
    10981135          ri != leaf->rays.end(); 
     
    11171154  // distribute the total number of rays according to the distribution 
    11181155  // of rays which remained 
    1119    
    1120    
    11211156  //  front->mTotalRays = front->rays.size()*leaf->mTotalRays/leaf->rays.size(); 
    11221157  //  back->mTotalRays = back->rays.size()*leaf->mTotalRays/leaf->rays.size(); 
     
    11571192  int released; 
    11581193 
    1159   tstack.push(root); 
     1194  PushRoots(tstack); 
    11601195 
    11611196  while (!tstack.empty()) { 
     
    12671302      ri++) { 
    12681303        RssTreeNode::RayInfo info(*ri); 
    1269         if (mForcedBoundingBox==NULL || ClipRay(info, bbox)) 
    1270           AddRay(info); 
     1304        //      if (mForcedBoundingBox==NULL || ClipRay(info, bbox)) 
     1305        AddRay(info); 
    12711306  } 
    12721307 
     
    12941329  stack<RayTraversalData> tstack; 
    12951330 
    1296   tstack.push(RayTraversalData(root, RssTreeNode::RayInfo(ray))); 
     1331  PushRoots(tstack, RssTreeLeaf::RayInfo(ray)); 
    12971332   
    12981333  RayTraversalData data; 
     
    13741409 
    13751410  stack<RayTraversalData> tstack; 
    1376    
     1411 
     1412  RssTreeNode *root = GetRoot(info.GetObject()); 
    13771413  tstack.push(RayTraversalData(root, info)); 
    13781414   
     
    15341570{ 
    15351571  stack<RssTreeNode *> tstack; 
    1536   tstack.push(root); 
     1572  PushRoots(tstack); 
    15371573 
    15381574  Intersectable::NewMail(); 
     
    15811617{ 
    15821618  stack<RssTreeNode *> tstack; 
    1583   tstack.push(root); 
     1619  PushRoots(tstack); 
    15841620   
    15851621  Intersectable::NewMail(); 
     
    16251661{ 
    16261662  stack<RssTreeNode *> tstack; 
    1627   tstack.push(root); 
     1663  PushRoots(tstack); 
    16281664         
    16291665  float sumPvsSize = 0.0f; 
     
    16951731{ 
    16961732  stack<RssTreeNode *> tstack; 
    1697   tstack.push(root); 
     1733  PushRoots(tstack); 
    16981734         
    16991735  while (!tstack.empty()) { 
     
    17301766{ 
    17311767  stack<RssTreeNode *> tstack; 
    1732   tstack.push(root); 
     1768  PushRoots(tstack); 
    17331769         
    17341770  while (!tstack.empty()) { 
     
    23102346        float contributionThreshold = allRays[desired]->mWeightedPvsContribution; 
    23112347         
    2312         tstack.push(root); 
     2348        PushRoots(tstack); 
    23132349         
    23142350        while (!tstack.empty()) { 
     
    23282364  } else { 
    23292365        // prune random rays from each leaf so that the ratio's remain the same 
    2330         tstack.push(root); 
     2366        PushRoots(tstack); 
    23312367        float ratio = desired/(float)stat.rayRefs; 
    23322368         
     
    24132449{ 
    24142450  stack<RssTreeNode *> tstack; 
    2415   tstack.push(root); 
     2451  PushRoots(tstack); 
    24162452 
    24172453  int sumPvs = 0; 
     
    27052741 
    27062742  stack<RssTreeNode *> tstack; 
    2707   tstack.push(root); 
     2743  PushRoots(tstack); 
    27082744   
    27092745  while (!tstack.empty()) { 
     
    27312767} 
    27322768 
     2769 
     2770RssTreeNode * 
     2771RssTree::GetRoot(Intersectable *object) const 
     2772{ 
     2773  if (mPerObjectTree && object) { 
     2774        int id = object->GetId(); 
     2775        if (id >= mRoots.size()) 
     2776          id = mRoots.size()-1; // $$ last tree is used by all unsigned objects 
     2777        return mRoots[id]; 
     2778  } else 
     2779        return mRoots[0]; 
     2780} 
     2781 
     2782void 
     2783RssTree::PushRoots(priority_queue<TraversalData> &st) const 
     2784{ 
     2785  for (int i=0; i < mRoots.size(); i++) 
     2786        st.push(TraversalData(mRoots[i], GetBBox(mRoots[i]), 0)); 
     2787} 
     2788 
     2789void 
     2790RssTree::PushRoots(stack<RssTreeNode *> &st)  const 
     2791{ 
     2792  for (int i=0; i < mRoots.size(); i++) 
     2793        st.push(mRoots[i]); 
     2794} 
     2795 
     2796void 
     2797RssTree::PushRoots(stack<RayTraversalData> &st, RssTreeNode::RayInfo &info)  const 
     2798{ 
     2799  for (int i=0; i < mRoots.size(); i++) 
     2800        st.push(RayTraversalData(mRoots[i], info)); 
     2801} 
  • trunk/VUT/GtpVisibilityPreprocessor/src/RssTree.h

    r512 r516  
    300300  // 
    301301  ///////////////////////////////// 
     302 
     303 
     304  // the bbox of the node 
     305  AxisAlignedBox3 bbox; 
     306   
     307  // the bbox of the node 
     308  AxisAlignedBox3 dirBBox; 
     309 
    302310   
    303311  inline RssTreeNode(RssTreeInterior *p); 
     
    333341  RssTreeNode *back, *front; 
    334342 
    335   // the bbox of the node 
    336   AxisAlignedBox3 bbox; 
    337    
    338   // the bbox of the node 
    339   AxisAlignedBox3 dirBBox; 
    340343 
    341344  // data for caching 
     
    611614  ///////////////////////////// 
    612615  // The core pointer 
    613   RssTreeNode *root; 
     616  vector<RssTreeNode *> mRoots; 
     617   
     618   
    614619   
    615620  ///////////////////////////// 
     
    618623  // total number of nodes of the tree 
    619624  int nodes; 
     625 
    620626  // axis aligned bounding box of the scene 
    621627  AxisAlignedBox3 bbox; 
     
    625631 
    626632  // forced bounding box for from viewcell visibility 
    627   AxisAlignedBox3 *mForcedBoundingBox; 
     633  //  AxisAlignedBox3 *mForcedBoundingBox; 
    628634 
    629635  ///////////////////////////// 
     
    652658  float termMaxRayContribution; 
    653659 
    654          
    655660  // randomized construction 
    656661  bool randomize; 
     662 
     663  // use a root per object in the tree 
     664  bool mPerObjectTree; 
    657665   
    658666  // type of the splitting to use fo rthe tree construction 
     
    711719  virtual void 
    712720  Construct( 
    713                         VssRayContainer &rays, 
    714                         AxisAlignedBox3 *forcedBoundingBox = NULL 
     721                        ObjectContainer &objects, 
     722                        VssRayContainer &rays 
     723                        //                      AxisAlignedBox3 *forcedBoundingBox = NULL 
    715724                        ); 
    716725         
     
    849858   
    850859  AxisAlignedBox3 GetBBox(const RssTreeNode *node) const { 
    851     if (node->parent == NULL) 
    852       return bbox; 
    853  
    854     if (!node->IsLeaf()) 
    855       return ((RssTreeInterior *)node)->bbox; 
    856  
    857     if (node->parent->axis >= 3) 
    858       return node->parent->bbox; 
     860        return node->bbox; 
     861 
     862//     if (node->parent == NULL) 
     863//       return bbox; 
     864 
     865//     if (!node->IsLeaf()) 
     866//       return ((RssTreeInterior *)node)->bbox; 
     867 
     868//     if (node->parent->axis >= 3) 
     869//       return node->parent->bbox; 
    859870       
    860     AxisAlignedBox3 box(node->parent->bbox); 
    861     if (node->parent->front == node) 
    862       box.SetMin(node->parent->axis, node->parent->position); 
    863     else 
    864       box.SetMax(node->parent->axis, node->parent->position); 
    865     return box; 
     871//     AxisAlignedBox3 box(node->parent->bbox); 
     872//     if (node->parent->front == node) 
     873//       box.SetMin(node->parent->axis, node->parent->position); 
     874//     else 
     875//       box.SetMax(node->parent->axis, node->parent->position); 
     876//     return box; 
    866877  } 
    867878 
     
    869880 
    870881  AxisAlignedBox3 GetDirBBox(const RssTreeNode *node) const { 
    871  
    872     if (node->parent == NULL) 
    873       return dirBBox; 
     882        return node->dirBBox; 
     883//     if (node->parent == NULL) 
     884//       return dirBBox; 
    874885     
    875     if (!node->IsLeaf() ) 
    876       return ((RssTreeInterior *)node)->dirBBox; 
    877  
    878     if (node->parent->axis < 3) 
    879       return node->parent->dirBBox; 
     886//     if (!node->IsLeaf() ) 
     887//       return ((RssTreeInterior *)node)->dirBBox; 
     888 
     889//     if (node->parent->axis < 3) 
     890//       return node->parent->dirBBox; 
    880891     
    881     AxisAlignedBox3 dBBox(node->parent->dirBBox); 
    882  
    883     if (node->parent->front == node) 
    884       dBBox.SetMin(node->parent->axis - 3, node->parent->position); 
    885     else 
    886       dBBox.SetMax(node->parent->axis - 3, node->parent->position); 
    887     return dBBox; 
     892//     AxisAlignedBox3 dBBox(node->parent->dirBBox); 
     893 
     894//     if (node->parent->front == node) 
     895//       dBBox.SetMin(node->parent->axis - 3, node->parent->position); 
     896//     else 
     897//       dBBox.SetMax(node->parent->axis - 3, node->parent->position); 
     898//     return dBBox; 
    888899  } 
    889900   
     
    978989                  ); 
    979990 
    980   RssTreeNode *GetRoot() const { return root; } 
     991  RssTreeNode *GetRoot(Intersectable *object = NULL) const; 
    981992 
    982993  bool 
     
    10531064                                         vector<RssTreeLeaf::SilhouetteRays> &rays 
    10541065                                         ); 
    1055    
     1066 
     1067  void 
     1068  PushRoots(priority_queue<TraversalData> &stack) const; 
     1069 
     1070  void 
     1071  PushRoots(stack<RssTreeNode *> &st) const; 
     1072 
     1073  void 
     1074  PushRoots(stack<RayTraversalData> &st, RssTreeNode::RayInfo &info) const; 
     1075 
     1076 
    10561077}; 
    10571078 
  • trunk/VUT/GtpVisibilityPreprocessor/src/default.env

    r507 r516  
    6969RssPreprocessor { 
    7070        samplesPerPass  100000 
    71         initialSamples 1000000 
     71        initialSamples 500000 
    7272        vssSamples 10000000 
    7373        vssSamplesPerPass 500000 
     
    9494 
    9595        epsilon         1e-6 
     96        perObjectTree true 
    9697 
    9798        maxDepth        40 
     
    105106        maxStaticMemory 100 
    106107 
    107 #       splitType regular 
     108        splitType regular 
    108109#       splitType heuristic 
    109         splitType hybrid 
     110#       splitType hybrid 
    110111        splitUseOnlyDrivingAxis true 
    111112        importanceBasedCost false 
     
    169170        #type kdTree 
    170171        #type vspKdTree 
    171         # type bspTree 
    172         type vspBspTree 
     172        type bspTree 
     173        #type vspBspTree 
    173174         
    174175        #type sceneDependent 
  • trunk/VUT/GtpVisibilityPreprocessor/src/preprocessor.pro

    r505 r516  
    44 
    55#win32:INCLUDEPATH += c:/STLport-4.6.2/stlport 
     6win32:INCLUDEPATH += "d:/Programs/NVIDIA Corporation/Cg/include" 
    67 
    78unix:INCLUDEPATH += ../support/src/xerces-c-src_2_7_0/include 
     
    1011 
    1112 
    12 win32:LIBPATH += ../support/xerces/lib ../support/devil/lib 
     13win32:LIBPATH += ../support/xerces/lib ../support/devil/lib "d:/Programs/NVIDIA Corporation/Cg/lib" 
    1314unix:LIBPATH += ../support/src/xerces-c-src_2_7_0/lib ../support/devil/lib /usr/lib/qt3/lib64 
    1415 
     
    2526QT += opengl 
    2627 
    27 win32:LIBS += xerces-c_2.lib devil.lib ilu.lib ilut.lib 
     28win32:LIBS += xerces-c_2.lib devil.lib ilu.lib ilut.lib cg.lib cgGL.lib 
    2829unix:LIBS += -lxerces-c -lIL -lILU -lILUT 
    2930 
     
    4344RenderSimulator.cpp VspKdTree.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \ 
    4445ViewCellsManager.cpp VspBspTree.cpp GlRenderer.cpp \ 
    45 PreprocessorThread.cpp Renderer.cpp Beam.cpp 
     46PreprocessorThread.cpp Renderer.cpp Beam.cpp ViewCellsParser.cpp 
    4647 
Note: See TracChangeset for help on using the changeset viewer.