Changeset 3358 for GTP/trunk/App/Demos/Vis/FriendlyCulling/src
- Timestamp:
- 04/16/09 18:55:13 (16 years ago)
- 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 346 346 int vertexCount; 347 347 str.read(reinterpret_cast<char *>(&vertexCount), sizeof(int)); 348 348 cout << "vertices: " << vertexCount << endl; 349 349 350 // end of file reached 350 351 if (str.eof()) return NULL; … … 381 382 texcoords = NULL; 382 383 } 384 385 cout << "here3: " << normals[vertexCount-1] << endl; 386 cout << "texCoordCount: " << texCoordCount << endl; 387 383 388 384 389 const bool delGeometry = true; … … 415 420 igzstream istr(filename.c_str()); 416 421 417 if (!istr.is_open()) 418 return 0; 419 422 if (!istr.is_open()) return 0; 423 424 cout << "here7" << endl; 420 425 cout << "loading textures" << endl; 421 426 -
TabularUnified GTP/trunk/App/Demos/Vis/FriendlyCulling/src/chcdemo.cpp ¶
r3353 r3358 656 656 Matrix4x4 transl = TranslationMatrix(positions[0]); 657 657 658 LoadModel("hbuddha.dem", dynamicObjects); 658 //LoadModel("hbuddha.dem", dynamicObjects); 659 //LoadModel("horse.dem", dynamicObjects); 660 LoadModel("happy.dem", dynamicObjects); 659 661 //LoadModel("torus.dem", dynamicObjects); 660 662 //LoadModel("venusm.dem", dynamicObjects);
Note: See TracChangeset
for help on using the changeset viewer.