aboutsummaryrefslogtreecommitdiffstats
path: root/examples/process_diff.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/process_diff.rs')
-rw-r--r--examples/process_diff.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/process_diff.rs b/examples/process_diff.rs
index 4222c6e..6132971 100644
--- a/examples/process_diff.rs
+++ b/examples/process_diff.rs
@@ -26,7 +26,14 @@ fn draw_frames(frames: &[Vec<u8>]) {
fn main() {
let frames: Vec<Vec<u8>> = read_frames().collect();
- for _ in 1..10 {
+ let start = std::time::Instant::now();
+ let mut i = 0;
+ loop {
+ i += 1;
draw_frames(&frames);
+ if (std::time::Instant::now() - start).as_secs() >= 30 {
+ break;
+ }
}
+ eprintln!("{} iterations", i);
}