add tracy support

android: `make android-tracy`
desktop: `cargo run --release --features tracy`

connect via `127.0.0.1:8086`
if using android then want to use desktop, unset the adb port
forwarding:
`adb forward --remove tcp:8086`

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-08-17 17:00:58 -04:00
parent a6d91c43e4
commit 0717353717
4 changed files with 110 additions and 0 deletions

View File

@@ -51,6 +51,7 @@ path = "src/notedeck.rs"
default = []
memory = ["re_memory"]
puffin = ["profiling/profile-with-puffin", "dep:puffin"]
tracy = ["profiling/profile-with-tracy"]
debug-widget-callstack = ["egui/callstack"]
debug-interactive-widgets = []

View File

@@ -73,4 +73,5 @@ security-framework = "2.11.0"
[features]
default = []
puffin = ["dep:puffin", "profiling/profile-with-puffin"]
tracy = ["profiling/profile-with-tracy"]