tinyprof 0.0.1

Tiny realtime frame profiler, well used with tinyecs
Documentation

tinyprof

Simple region based profiler.

{
    profile_region!("Root region");

    // something heavy

    {
        profiler_region!("sub region 1");
        // something heavy
    }

    {
        profiler_region!("sub region 2");
        // something heavy
    }

    profiler_next_frame();
}