| 2206 | } |
| 2207 | |
| 2208 | void BucketPruner::removeObjects(const PrunerHandle* handles, PxU32 count) |
| 2209 | { |
| 2210 | if(!count) |
| 2211 | return; |
| 2212 | |
| 2213 | for(PxU32 i=0;i<count;i++) |
| 2214 | mPool.removeObject(handles[i]); |
| 2215 | |
| 2216 | mCore.setExternalMemory(mPool.getNbActiveObjects(), mPool.getCurrentWorldBoxes(), mPool.getObjects()); |
| 2217 | mCore.mDirty = true; |
| 2218 | } |
| 2219 | |
| 2220 | void BucketPruner::updateObjectsAfterManualBoundsUpdates(const PrunerHandle* handles, PxU32 count) |
| 2221 | { |
nothing calls this directly
no test coverage detected