()
| 2715 | |
| 2716 | #[no_mangle] |
| 2717 | pub extern "C" fn bloom_profiler_frame_history() -> *const u8 { |
| 2718 | let hist = engine().profiler.frame_history(); |
| 2719 | let mut s = String::with_capacity(hist.len() * 24); |
| 2720 | for (cpu, gpu) in &hist { |
| 2721 | s.push_str(&format!("{:.2}|{:.2}\n", cpu, gpu)); |
| 2722 | } |
| 2723 | alloc_perry_string(&s) |
| 2724 | } |
| 2725 | |
| 2726 | #[no_mangle] |
| 2727 | pub extern "C" fn bloom_profiler_overlay_text() -> *const u8 { |
nothing calls this directly
no test coverage detected