1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

Learn how to spell to "tessellation"

This commit is contained in:
Emil Ernerfeldt
2020-12-29 00:51:27 +01:00
parent 19b4d87c65
commit d38b16f1ea
10 changed files with 43 additions and 43 deletions

View File

@@ -151,7 +151,7 @@ pub fn run(mut app: Box<dyn App>) -> ! {
app.ui(&ctx, &mut integration_context);
let app_output = integration_context.output;
let (egui_output, paint_commands) = ctx.end_frame();
let paint_jobs = ctx.tesselate(paint_commands);
let paint_jobs = ctx.tessellate(paint_commands);
let frame_time = (Instant::now() - frame_start).as_secs_f64() as f32;
previous_frame_time = Some(frame_time);