| 1053 | ///// |
| 1054 | |
| 1055 | void AABBManager::reserveShapeSpace(PxU32 nbTotalBounds) |
| 1056 | { |
| 1057 | nbTotalBounds = Ps::nextPowerOfTwo(nbTotalBounds); |
| 1058 | mGroups.resize(nbTotalBounds, Bp::FilterGroup::eINVALID); |
| 1059 | mVolumeData.resize(nbTotalBounds); //KS - must be initialized so that userData is NULL for SQ-only shapes |
| 1060 | mContactDistance.resizeUninitialized(nbTotalBounds); |
| 1061 | mAddedHandleMap.resize(nbTotalBounds); |
| 1062 | mRemovedHandleMap.resize(nbTotalBounds); |
| 1063 | } |
| 1064 | |
| 1065 | #if PX_VC |
| 1066 | #pragma warning(disable: 4355 ) // "this" used in base member initializer list |
nothing calls this directly
no test coverage detected