fps_ticker

Crates.iofps_ticker
lib.rsfps_ticker
version1.0.0
sourcesrc
created_at2020-05-10 18:20:58.849254
updated_at2020-05-10 18:20:58.849254
descriptionA simple crate for measuring the average, minimum and maximum frame rate over a window of time.
homepagehttps://github.com/mitchmindtree/fps_ticker
repositoryhttps://github.com/mitchmindtree/fps_ticker.git
max_upload_size
id239775
size8,413
(mitchmindtree)

documentation

README

fps_ticker Crates.io docs.rs

A simple crate for measuring the average, minimum and maximum frame rate over a window of time.

Usage

Specify a window length over which the average, minimum and maximum values will be measured.

use fps_ticker::Fps;

fn main() {
    let fps = Fps::with_window_len(100);
}

Or create an instance with the default window length of 60.

let fps = Fps::default();

Call tick once per frame at the point at which you wish to measure the rate. This samples the duration since the last tick, adds it to the window, removes the oldest duration from the window if necessary and re-calculates the average, minimum and maximum rate over the resulting window.

fps.tick();

Now we can retrieve the average, minimum and maximum rate over the window of time.

fps.avg();
fps.min();
fps.max();
Commit count: 1

cargo fmt