Profiling hooks
| 747 | |
| 748 | // Profiling hooks |
| 749 | virtual PvdError beginSection(const void* instance, String name) |
| 750 | { |
| 751 | PX_ASSERT(mStreamState == DataStreamState::Open); |
| 752 | return boolToError(handlePvdEvent( |
| 753 | BeginSection(toStream(instance), toStream(name), Time::getCurrentCounterValue()))); |
| 754 | } |
| 755 | |
| 756 | virtual PvdError endSection(const void* instance, String name) |
| 757 | { |
no test coverage detected