1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-03 07:10:04 -04:00

Spelling: tesselate -> tessellate

This commit is contained in:
Emil Ernerfeldt
2021-03-28 22:44:03 +02:00
parent aeaa54aab1
commit ccc501f302
2 changed files with 4 additions and 4 deletions

View File

@@ -70,12 +70,12 @@ pub fn criterion_benchmark(c: &mut Criterion) {
});
let galley = font.layout_multiline(LOREM_IPSUM_LONG.to_owned(), wrap_width);
let mut tesselator = egui::epaint::Tessellator::from_options(Default::default());
let mut tessellator = egui::epaint::Tessellator::from_options(Default::default());
let mut mesh = egui::epaint::Mesh::default();
c.bench_function("tesselate text", |b| {
c.bench_function("tessellate text", |b| {
b.iter(|| {
let fake_italics = false;
tesselator.tessellate_text(
tessellator.tessellate_text(
&fonts,
egui::Pos2::ZERO,
&galley,