| 82 | PX_FORCE_INLINE PxU32 getTouchCount() const { return mTouchCount; } |
| 83 | |
| 84 | PX_FORCE_INLINE void incRefCount() { ++mRefCount; PX_ASSERT(mRefCount>0); } |
| 85 | PX_FORCE_INLINE PxU32 decRefCount() { PX_ASSERT(mRefCount>0); return --mRefCount; } |
| 86 | PX_FORCE_INLINE PxU32 getRefCount() const { return mRefCount; } |
| 87 |
no outgoing calls
no test coverage detected