| 50 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 51 | |
| 52 | BVHCompoundPruner::BVHCompoundPruner() |
| 53 | { |
| 54 | mCompoundTreePool.preallocate(32); |
| 55 | mMainTreeUpdateMap.resizeUninitialized(32); |
| 56 | mPoolActorMap.resizeUninitialized(32); |
| 57 | mChangedLeaves.reserve(32); |
| 58 | } |
| 59 | |
| 60 | /////////////////////////////////////////////////////////////////////////////////////////////// |
| 61 |
nothing calls this directly
no test coverage detected