| 540 | } |
| 541 | |
| 542 | void NpFactory::releaseShapeToPool(NpShape& shape) |
| 543 | { |
| 544 | PX_ASSERT(shape.getBaseFlags() & PxBaseFlag::eOWNS_MEMORY); |
| 545 | Ps::Mutex::ScopedLock lock(mShapePoolLock); |
| 546 | mShapePool.destroy(&shape); |
| 547 | } |
| 548 | |
| 549 | PxU32 NpFactory::getNbShapes() const |
| 550 | { |
no test coverage detected