Rust library for limiting the cpu usage by trying to target a specific frame rate. The library will internally estimate the time we need to sleep to reach the target fps, taking the programs execution time into account.
example code: ```rs let mut cpulimiter = CpuLimiter::new( Duration::frommillis(100), // used in Usage::Low Duration::from_millis(10) // used in Usage::Normal );
// will now target 10 ms between frames cpulimiter.changeusage(Usage::Normal); loop { cpulimiter.mightsleep(); }
```
might_sleep is free and open source! All code in this repository is dual-licensed under either:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.