MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/PhysX / combine1

Method combine1

physx/source/common/src/CmBitMap.h:467–473  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 3

extendFunction · 0.85
PxMinFunction · 0.85
getWordCountFunction · 0.85

Tested by

no test coverage detected