-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
I use flame for a ray tracer, which roughly correspond to
for i in 0..x {
for j in 0..y {
let _guard = flame::start_guard("compute color");
out[i][j] = compute_color(i, j);
}
}The trouble is that I get x*y "compute color" frames, each taking 0.001% of running time. Is there a way to combine these in a single frame, aside from doing everything manually with flame::frames()?
Metadata
Metadata
Assignees
Labels
No labels