| 374 | } |
| 375 | |
| 376 | void ABP_MM::frameFree(void* address) |
| 377 | { |
| 378 | if(mScratchAllocator) |
| 379 | mScratchAllocator->free(address); |
| 380 | else |
| 381 | PX_FREE(address); |
| 382 | } |
| 383 | |
| 384 | template<class T> |
| 385 | static T* resizeBoxesT(PxU32 oldNbBoxes, PxU32 newNbBoxes, const T* boxes) |
no test coverage detected