tracy
tracy copied to clipboard
Frame profiler
I downloaded the tracy-master on Linux (debian10) when I - cd tracy/csvexport/build/unix - make or - cd tracy/capture/build /unix - make This error occurs " ../../../server/TracyWorker.cpp:354:14: error: no matching function...
It is a common use case to have a couple of Frames (time ranges) when doing repetitive per-commit or per-feature perftests, e.g. one for loading resources and one for a...
Hi, thanks for this great tool. We are writing a tracy python binding. Python has a [`PyEval_SetProfile`](https://docs.python.org/3/c-api/init.html#c.PyEval_SetProfile) API to set a profiler function in the interpreter. Every time a function...
Hello ! We are trying to use Tracy inside of an Emscripten environment, and as soon as Tracy is enabled in our application we are getting some pretty obscure issues...
If I leave my program running for about a minute, I get an assertion fail at line 283 of TracyVulkan.hpp ```cpp assert( m_head != m_tail ); ``` Inspecting the values...
Not sure if this is intended, but it definitely threw me off at first.
wasm Makefile is referring to $(HOME)/.emscripten_cache/sysroot/include/capstone $(HOME)/.emscripten_cache/sysroot/lib/libcapstone.a how should capstone get into this folder?
The histogram shows the time distribution of a particular Zone. Seeing that sometimes zones can be slow is interesting. I'd like to figure out what's going on. I was thinking...
Looking at the code of `tracy::ScopedZone`, it doesn't seem possible to conditionally submit/commit a zone, as the constructor already commits something right away. My situation: I'm having a spinlock where...
When using CMake to integrate Tracy into an application, the TRACY_ENABLE definition is added automatically to the user targets. This means that you can't easily disable tracing without touching the...