| 465 | |
| 466 | template<class Combiner> |
| 467 | void combine1(const PxU32* words, PxU32 length) |
| 468 | { |
| 469 | extend(length<<5); |
| 470 | PxU32 combineLength = PxMin(getWordCount(), length); |
| 471 | for(PxU32 i=0;i<combineLength;i++) |
| 472 | mMap[i] = Combiner()(mMap[i], words[i]); |
| 473 | } |
| 474 | |
| 475 | template<class Combiner> |
| 476 | void combine2(const PxU32* words1, PxU32 length1, |
nothing calls this directly
no test coverage detected