Macro tracy_client::finish_continuous_frame[][src]

macro_rules! finish_continuous_frame {
    () => { ... };
    ($name : literal) => { ... };
}
Expand description

Indicate that rendering of a continuous frame has ended.

Typically should be inserted after a buffer swap.

In case you want to annotate secondary continuous frame sets, call the macro with a string argument.

For non-continuous frame sets see Frame.

Examples

swap_buffers();
finish_continuous_frame!();
finish_continuous_frame!("some other frame loop");