Return the total time of the current node
| 416 | |
| 417 | // Return the total time of the current node |
| 418 | RP3D_FORCE_INLINE std::chrono::duration<double, std::milli> ProfileNodeIterator::getCurrentTotalTime() { |
| 419 | return mCurrentChildNode->getTotalTime(); |
| 420 | } |
| 421 | |
| 422 | // Return the total number of calls of the current node |
| 423 | RP3D_FORCE_INLINE uint ProfileNodeIterator::getCurrentNbTotalCalls() { |
no test coverage detected