tracy_full 1.2.0

Fully featured bindings for the Tracy profiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use tracy_full as tracy;

fn main() {
	for i in 0..10000 {
		tracy::frame!("secondary");

		tracy::frame!();

		if i % 2 == 0 {
			tracy::frame!(discontinuous "discontinuous");

			tracy::zone!("hi", true);
		}
	}
}