| 344 | |
| 345 | static PX_FORCE_INLINE PxU32 getNbPrimitives(PxU32 data) { return (data>>1)&15; } |
| 346 | static PX_FORCE_INLINE const PxU32* getPrimitives(const PxU32* base, PxU32 data) { return base + (data>>5); } |
| 347 | static PX_FORCE_INLINE const AABBTreeRuntimeNode* getPos(const AABBTreeRuntimeNode* base, PxU32 data) { return base + (data>>1); } |
| 348 | static PX_FORCE_INLINE PxU32 isLeaf(PxU32 data) { return data&1; } |
| 349 |
no outgoing calls
no test coverage detected