Ignore:
Timestamp:
04/16/09 18:55:13 (16 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/App/Demos/Vis/FriendlyCulling/src
Files:
2 edited

Legend:

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

    r3274 r3358  
    346346        int vertexCount; 
    347347        str.read(reinterpret_cast<char *>(&vertexCount), sizeof(int)); 
    348          
     348        cout << "vertices: " << vertexCount << endl; 
     349 
    349350        // end of file reached 
    350351        if (str.eof()) return NULL; 
     
    381382                texcoords = NULL; 
    382383        } 
     384 
     385        cout << "here3: " << normals[vertexCount-1] << endl; 
     386        cout << "texCoordCount: " << texCoordCount << endl; 
     387 
    383388 
    384389        const bool delGeometry = true; 
     
    415420        igzstream istr(filename.c_str()); 
    416421         
    417         if (!istr.is_open()) 
    418                 return 0; 
    419  
     422        if (!istr.is_open()) return 0; 
     423 
     424        cout << "here7" << endl; 
    420425        cout << "loading textures" << endl; 
    421426         
  • TabularUnified GTP/trunk/App/Demos/Vis/FriendlyCulling/src/chcdemo.cpp

    r3353 r3358  
    656656        Matrix4x4 transl = TranslationMatrix(positions[0]); 
    657657         
    658         LoadModel("hbuddha.dem", dynamicObjects); 
     658        //LoadModel("hbuddha.dem", dynamicObjects); 
     659        //LoadModel("horse.dem", dynamicObjects); 
     660        LoadModel("happy.dem", dynamicObjects); 
    659661        //LoadModel("torus.dem", dynamicObjects); 
    660662        //LoadModel("venusm.dem", dynamicObjects); 
Note: See TracChangeset for help on using the changeset viewer.