tracy/public
Bartosz Taudul 197007ab47
Keep a list of buffers left to handle.
Previously a bitmap of buffers was repeatedly scanned to see which buffers
still contain data. This process was needlessly wasting cycles (seen as a
hotspot when profiled) and worse yet, the workload increased with the number
of CPU cores (=> buffers used) to handle.

The new implementation instead maintains a list of buffer indices that have to
be handled. This list does not contain empty buffers, so each loop iteration
performs some work, instead of just spinning in search for buffers to handle.
2022-08-18 13:59:56 +02:00
..
client Keep a list of buffers left to handle. 2022-08-18 13:59:56 +02:00
common Bump LZ4 to 1.9.4. 2022-08-16 14:43:50 +02:00
libbacktrace Resolve relative file names to absolute ones. 2022-08-16 23:48:46 +02:00
tracy Expose source callback registering through a macro. 2022-08-17 16:26:03 +02:00
TracyClient.cpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00