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

Method clearBit

physx/source/scenequery/src/SqAABBTree.h:67–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65 mBits[bit_number>>5] |= 1<<(bit_number&31);
66 }
67 PX_FORCE_INLINE void clearBit(PxU32 bit_number)
68 {
69 mBits[bit_number>>5] &= ~(1<<(bit_number&31));
70 }
71 PX_FORCE_INLINE void toggleBit(PxU32 bit_number)
72 {
73 mBits[bit_number>>5] ^= 1<<(bit_number&31);

Callers 3

modifySamplesMethod · 0.45
clearTessFlagMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected