Ignore:
Timestamp:
04/16/09 18:55:13 (15 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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         
Note: See TracChangeset for help on using the changeset viewer.