1 2 3 4 5 6
//! Utilities for frame rate computation and management. pub mod counter; pub mod sample; pub use self::counter::{FrameCounter, FrameCount}; pub use self::sample::{FrameRateSampler, RunningAverageSampler, LinearAverageSampler};
1 2 3 4 5 6
//! Utilities for frame rate computation and management. pub mod counter; pub mod sample; pub use self::counter::{FrameCounter, FrameCount}; pub use self::sample::{FrameRateSampler, RunningAverageSampler, LinearAverageSampler};