mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
1f64a87abe
Expose this ChromeTraceUtil logging to C-API: start/statelogging and submitProfileTiming pybullet.submitProfileTiming, and STATE_LOGGING_PROFILE_TIMINGS used in startStateLogging added example for Python profileTiming.py and C++ b3RobotSimulatorClientAPI::submitProfileTiming
9 lines
241 B
C
9 lines
241 B
C
|
|
#ifndef B3_CHROME_TRACE_UTIL_H
|
|
#define B3_CHROME_TRACE_UTIL_H
|
|
|
|
void b3ChromeUtilsStartTimings();
|
|
void b3ChromeUtilsStopTimingsAndWriteJsonFile(const char* fileNamePrefix);
|
|
void b3ChromeUtilsEnableProfiling();
|
|
|
|
#endif//B3_CHROME_TRACE_UTIL_H
|