()
| 565 | } |
| 566 | |
| 567 | fn now_us() -> u64 { |
| 568 | SystemTime::now() |
| 569 | .duration_since(UNIX_EPOCH) |
| 570 | .unwrap_or(Duration::ZERO) |
| 571 | .as_micros() as u64 |
| 572 | } |
| 573 | |
| 574 | fn shared_refresh_interval() -> Duration { |
| 575 | let target_fps = std::env::var("SIMDECK_REALTIME_FPS") |
no outgoing calls
no test coverage detected