Profiler.hx 271 B

123456789101112131415161718
  1. package cpp.vm;
  2. class Profiler
  3. {
  4. static public function start(?inDumpFile:String) : Void
  5. {
  6. untyped __global__.__hxcpp_start_profiler(inDumpFile);
  7. }
  8. static public function stop() : Void
  9. {
  10. untyped __global__.__hxcpp_stop_profiler();
  11. }
  12. }