Return true if we are at the root of the profiler tree
| 401 | |
| 402 | // Return true if we are at the root of the profiler tree |
| 403 | RP3D_FORCE_INLINE bool ProfileNodeIterator::isRoot() { |
| 404 | return (mCurrentParentNode->getParentNode() == nullptr); |
| 405 | } |
| 406 | |
| 407 | // Return true if we are at the end of a branch of the profiler tree |
| 408 | RP3D_FORCE_INLINE bool ProfileNodeIterator::isEnd() { |
no test coverage detected