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

Add a fractal clock example to showcase painting performance

This commit is contained in:
Emil Ernerfeldt
2020-05-11 20:21:24 +02:00
parent 5a9e3d62bf
commit 71154edf9b
21 changed files with 425 additions and 37 deletions

7
emigui/src/examples.rs Normal file
View File

@@ -0,0 +1,7 @@
mod app;
mod fractal_clock;
pub use {
app::{ExampleApp, ExampleWindow},
fractal_clock::FractalClock,
};