Differential D1739 Diff 5899 extern/bullet2/src/BulletCollision/CollisionDispatch/btHashedSimplePairCache.cpp
Changeset View
Changeset View
Standalone View
Standalone View
extern/bullet2/src/BulletCollision/CollisionDispatch/btHashedSimplePairCache.cpp
| Show All 22 Lines | |||||
| int gOverlappingSimplePairs = 0; | int gOverlappingSimplePairs = 0; | ||||
| int gRemoveSimplePairs =0; | int gRemoveSimplePairs =0; | ||||
| int gAddedSimplePairs =0; | int gAddedSimplePairs =0; | ||||
| int gFindSimplePairs =0; | int gFindSimplePairs =0; | ||||
| btHashedSimplePairCache::btHashedSimplePairCache(): | btHashedSimplePairCache::btHashedSimplePairCache() { | ||||
| m_blockedForChanges(false) | |||||
| { | |||||
| int initialAllocatedSize= 2; | int initialAllocatedSize= 2; | ||||
| m_overlappingPairArray.reserve(initialAllocatedSize); | m_overlappingPairArray.reserve(initialAllocatedSize); | ||||
| growTables(); | growTables(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 237 Lines • Show Last 20 Lines | |||||