| 2193 | } |
| 2194 | |
| 2195 | bool BucketPruner::addObjects(PrunerHandle* results, const PxBounds3* bounds, const PrunerPayload* payload, PxU32 count, bool) |
| 2196 | { |
| 2197 | if(!count) |
| 2198 | return true; |
| 2199 | |
| 2200 | const PxU32 valid = mPool.addObjects(results, bounds, payload, count); |
| 2201 | mCore.mDirty = true; |
| 2202 | |
| 2203 | mCore.setExternalMemory(mPool.getNbActiveObjects(), mPool.getCurrentWorldBoxes(), mPool.getObjects()); |
| 2204 | |
| 2205 | return valid == count; |
| 2206 | } |
| 2207 | |
| 2208 | void BucketPruner::removeObjects(const PrunerHandle* handles, PxU32 count) |
| 2209 | { |
nothing calls this directly
no test coverage detected