tinyprof 0.0.1

Tiny realtime frame profiler, well used with tinyecs
Documentation
  • Coverage
  • 0%
    0 out of 27 items documented0 out of 7 items with examples
  • Size
  • Source code size: 8.91 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.85 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 14s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • not-fl3/tinyprof
    15 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • not-fl3

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();
}