Changeset 2852


Ignore:
Timestamp:
08/19/08 11:47:41 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2851 r2852  
    5656        sceneGeom = new SceneEntity(trafo); 
    5757 
     58 
    5859        /////////////// 
    5960        //-- load lod levels 
     
    6263        str.read(reinterpret_cast<char *>(&numLODs), sizeof(int)); 
    6364 
    64         //if (numLODs > 1) cout << "numlods: " << numLODs << endl; 
    6565        for (int i = 0; i < numLODs; ++ i) 
    6666        { 
     
    6868                str.read(reinterpret_cast<char *>(&distance), sizeof(float)); 
    6969 
    70                 // hack 
    71                 //if (i >= 3) distance = 30000; 
    72  
    7370                int numShapes; 
    7471                str.read(reinterpret_cast<char *>(&numShapes), sizeof(int)); 
    75  
    76                 //if (numLODs > 1) cout << "dist: " << distance << " shapes: " << numShapes << endl; 
    7772 
    7873                LODLevel *lodLevel = new LODLevel(distance); 
     
    112107                int texnameSize; 
    113108 
    114                 //str.read(reinterpret_cast<char *>(&id), sizeof(int)); 
    115109                str.read(reinterpret_cast<char *>(&texnameSize), sizeof(int)); 
    116110 
Note: See TracChangeset for help on using the changeset viewer.