tracy icon indicating copy to clipboard operation
tracy copied to clipboard

Frame profiler

Results 174 tracy issues
Sort by recently updated
recently updated
newest added

Hi @wolfpld, I've been using Tracy for a while on personal projects. Lately, I've been attempting to add Tracy as a project profiler for [Vulkan Samples](https://github.com/KhronosGroup/Vulkan-Samples) here's the [PR](https://github.com/KhronosGroup/Vulkan-Samples/pull/757) As...

When recording a trace, I sometimes want to hover over these icons on the right side to read their tooltips: ![grafik](https://github.com/wolfpld/tracy/assets/10748498/39f3cb1c-1891-46ab-9a5f-ed06e34cf7cf) I imagine this is especially important to new users....

Profiler GUI application does not respond to close button, stucking forever until Ctrl-C. System: Ubuntu 20.04, 22.04 Version: v0.9, v0.10 Tried LEGACY = 0 and 1 Capstone v0.4.2 installed from...

Version 0.10.0 Windows 11 MSVC 2022 17.7.6 1. Create std::thread 2. Set its name with ::SetThreadDescription(::GetCurrentThread(), SomeName.c_str()); 3. Run regularly, without context switching profiling 4. Connect tracy 5. Thread names...

It'd be nice to have a dot or some other indicator every time a thread makes and allocation so you can easily view a threads allocations.

This feature needs a lot of design work, but it would be really helpful to be able to diff memory allocations between two traces. Basic stats like number of allocations,...

This helps when you're looking for a specific allocation.

Specifically, I'm looking to avoid seeing memory allocations from the surrounding/supporting code needed to do tracing.

You can't use `TRACY_MANUAL_LIFETIME` alone because the c functions use cpp code that only exists when both macros are set: https://github.com/wolfpld/tracy/blob/d62428c482845031e4ab633e6132dbc26cfe46ca/public/client/TracyProfiler.hpp#L51-L56 Is this intentional? If so, the c APIs should...

When profiling my game with elevated priveleges tracy gathers sampling information for all threads of my process. 99% of the time, I'm only interested in the sampled data from threads...