1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-10 15:04:32 +03:00

add per-line render latency histogram

This commit is contained in:
Wez Furlong 2021-07-08 09:58:48 -07:00
parent 7287447f33
commit 2ed3cbe313

View File

@ -964,6 +964,7 @@ impl super::TermWindow {
"render_screen_line_opengl.right_fill", "render_screen_line_opengl.right_fill",
right_fill_start.elapsed() right_fill_start.elapsed()
); );
metrics::histogram!("render_screen_line_opengl", start.elapsed());
log::trace!( log::trace!(
"right fill {} -> elapsed {:?}", "right fill {} -> elapsed {:?}",
num_cols.saturating_sub(last_cell_idx), num_cols.saturating_sub(last_cell_idx),