From 71d18ba3e78662d684753c8a50eede90d5d35c3b Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 3 Sep 2021 21:07:25 +0200 Subject: [PATCH] Spelling: tesselate -> tessellate --- egui_demo_lib/benches/benchmark.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/egui_demo_lib/benches/benchmark.rs b/egui_demo_lib/benches/benchmark.rs index 0f3290ea..b774357e 100644 --- a/egui_demo_lib/benches/benchmark.rs +++ b/egui_demo_lib/benches/benchmark.rs @@ -10,7 +10,7 @@ pub fn criterion_benchmark(c: &mut Criterion) { let mut demo_windows = egui_demo_lib::DemoWindows::default(); // The most end-to-end benchmark. - c.bench_function("demo_with_tesselate__realistic", |b| { + c.bench_function("demo_with_tessellate__realistic", |b| { b.iter(|| { ctx.begin_frame(raw_input.clone()); demo_windows.ui(&ctx); @@ -19,7 +19,7 @@ pub fn criterion_benchmark(c: &mut Criterion) { }) }); - c.bench_function("demo_no_tesselate", |b| { + c.bench_function("demo_no_tessellate", |b| { b.iter(|| { ctx.begin_frame(raw_input.clone()); demo_windows.ui(&ctx); @@ -39,7 +39,7 @@ pub fn criterion_benchmark(c: &mut Criterion) { let mut ctx = egui::CtxRef::default(); ctx.memory().set_everything_is_visible(true); // give us everything let mut demo_windows = egui_demo_lib::DemoWindows::default(); - c.bench_function("demo_full_no_tesselate", |b| { + c.bench_function("demo_full_no_tessellate", |b| { b.iter(|| { ctx.begin_frame(raw_input.clone()); demo_windows.ui(&ctx);