Changeset 9378 in orxonox.OLD
- Timestamp:
- Jul 21, 2006, 11:49:22 AM (18 years ago)
- Location:
- branches/proxy
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/ChangeLog
r9376 r9378 2 2 New implementation of the signal/slot paradigm 3 3 For this the nice implementation sigslot from Sarah Thompson was adapted. 4 Also adopted the GL-Gui callback. 5 One other thing done was the switch from const char* to const std::string& 6 in the return value from BaseObject::getName and BaseObject::getClassName. 7 8 2006-07-21 orxonox <info@orxonox.net> 9 All implementations from the PPS-team in the Summer-semester integrated: 10 Network (update) [Christoph Renner] 11 Weather engine [David Hasenfratz, Andreas Maechler] 12 Water with a very nice shader implementation. [Stefan Lienhard] 13 Scripting Engine (LUA-interface) [Silvan Nellen] 14 Story book (mostly within of the WIKI) [Benjamin Knecht] 15 Binary Space Partitioning [Claudio Botta] 16 17 18 2006-06-10 Benjamin Grauerb <bensch@orxonox.net> 19 Introduced new GL-style Gui 4 20 5 21 2006-05-19 Benjamin Grauerb <bensch@orxonox.net> -
branches/proxy/src/subprojects/benchmark.cc
r8495 r9378 56 56 57 57 // first measure the time overhead: 58 unsigned long ini, end, dt , tmp;58 unsigned long ini, end, dt; 59 59 rdtscl(ini); rdtscl(end); 60 60 dt = end - ini; … … 172 172 173 173 mittel = 0; 174 BaseObject* bo = new BaseObject();175 174 for(i = 0; i < ITERATIONS; ++i) 176 175 {
Note: See TracChangeset
for help on using the changeset viewer.