Changeset 3289 for GTP/trunk/App/Demos/Vis/FriendlyCulling/src
- Timestamp:
- 01/20/09 23:34:39 (16 years ago)
- Location:
- GTP/trunk/App/Demos/Vis/FriendlyCulling/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Vis/FriendlyCulling/src/VisibilitySolutionLoader.cpp
r3286 r3289 36 36 fread(&totalTime, sizeof(float), 1, fr); 37 37 38 cout << "visibity solution created with " << totalSamples << " in " << totalTime << " secs" << endl; 38 39 cout << "loading view cells" << endl; 39 40 … … 155 156 156 157 BvhNodeContainer nodes; 157 CreateIdSortedList2(bvh->GetStaticRoot(), nodes);158 //CreateIdSortedList(bvh, nodes);158 //CreateIdSortedList2(bvh->GetStaticRoot(), nodes); 159 CreateIdSortedList(bvh, nodes); 159 160 160 161 const int tenpercent = number / 10; -
GTP/trunk/App/Demos/Vis/FriendlyCulling/src/chcdemo.cpp
r3288 r3289 1785 1785 (renderMethod == RENDER_DEPTH_PASS_DEFERRED) 1786 1786 ); 1787 1788 1787 break; 1789 1788 case GLUT_KEY_F8: … … 1799 1798 { 1800 1799 cout << "replaying path" << endl; 1801 1802 1800 currentReplayFrame = -1; 1803 1801 … … 1809 1807 cout << "finished replaying path" << endl; 1810 1808 } 1811 1812 1809 break; 1813 1810 case GLUT_KEY_F11: … … 1824 1821 DEL_PTR(walkThroughRecorder); 1825 1822 } 1826 1827 1823 break; 1828 1824 case GLUT_KEY_F12:
Note: See TracChangeset
for help on using the changeset viewer.