| 322 | } |
| 323 | |
| 324 | PxU32 NpPhysics::getScenes(PxScene** userBuffer, PxU32 bufferSize, PxU32 startIndex) const |
| 325 | { |
| 326 | Ps::Mutex::ScopedLock lock(const_cast<Ps::Mutex&>(mSceneAndMaterialMutex)); |
| 327 | return Cm::getArrayOfPointers(userBuffer, bufferSize, startIndex, mSceneArray.begin(), mSceneArray.size()); |
| 328 | } |
| 329 | |
| 330 | PxRigidStatic* NpPhysics::createRigidStatic(const PxTransform& globalPose) |
| 331 | { |
no test coverage detected