1
0
Fork 0
forked from wry/wry

tracy: move profiler facade into workspace crate

This commit is contained in:
kossLAN 2026-05-29 09:17:36 -04:00
parent 657e7ce2f7
commit b7ecf700fa
No known key found for this signature in database
7 changed files with 49 additions and 9 deletions

View file

@ -1,15 +0,0 @@
#[cfg(feature = "tracy")]
#[macro_use]
mod tracy_impl;
#[cfg(feature = "tracy")]
use tracy_impl as imp;
#[cfg(not(feature = "tracy"))]
#[macro_use]
mod tracy_noop;
#[cfg(not(feature = "tracy"))]
use tracy_noop as imp;
pub use imp::{FrameName, ZoneName, enable_profiler};