Skip to content

Commit

Permalink
Spelling: tesselate -> tessellate
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Sep 3, 2021
1 parent 9598596 commit 71d18ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions egui_demo_lib/benches/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 71d18ba

Please sign in to comment.