Skip to main content

frame_count

Function frame_count 

Source
pub fn frame_count() -> u64
Expand description

Return the per-thread frame counter value.

ยงExamples

use martensite_devtools::tracy;

let before = tracy::frame_count();
tracy::frame_mark();
assert_eq!(tracy::frame_count(), before + 1);