| 739 | } |
| 740 | |
| 741 | bool NpShape::isWritable() |
| 742 | { |
| 743 | // a shape is writable if it's exclusive, or it's not connected to any actors (which is true if the ref count is 1 and the user ref is not released.) |
| 744 | return isExclusiveFast() || (getRefCount()==1 && (mBaseFlags & PxBaseFlag::eIS_RELEASABLE)); |
| 745 | } |
| 746 | |
| 747 | void NpShape::incMeshRefCount() |
| 748 | { |
nothing calls this directly
no test coverage detected