1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-26 16:34:23 +03:00
wezterm/termwiz/benches/cell.rs

23 lines
861 B
Rust
Raw Normal View History

use criterion::{black_box, criterion_group, criterion_main, Criterion};
use termwiz::cell::{Cell, CellAttributes};
pub fn criterion_benchmark(c: &mut Criterion) {
c.bench_function("Cell::blank", |b| b.iter(|| black_box(Cell::blank())));
c.bench_function("Cell::new", |b| {
b.iter(|| Cell::new(black_box('a'), CellAttributes::default()))
});
c.bench_function("Cell::new_grapheme", |b| {
b.iter(|| Cell::new_grapheme(black_box("a"), CellAttributes::default(), None))
});
c.bench_function("Cell::new_grapheme_with_width", |b| {
b.iter(|| Cell::new_grapheme_with_width(black_box("a"), 1, CellAttributes::default()))
});
c.bench_function("CellAttributes::blank", |b| {
b.iter(|| black_box(CellAttributes::blank()))
});
}
criterion_group!(benches, criterion_benchmark);
criterion_main!(benches);