Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2018-03-18 15:09:59 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2018-03-18 15:09:59 +0300
commit8ce6634ebc941276cb613c44ed11ce9ad6184dfd (patch)
treec49ef1b9d54a7536fd6d504569cd3536904e0c27 /README.md
parentd747f2b74f3b0c969e6378f42c13de463f988b15 (diff)
Document the TRACY_NO_STATISTICS macro.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 71b7aced..80a4a08b 100644
--- a/README.md
+++ b/README.md
@@ -124,3 +124,5 @@ While the data collection is very lightweight, it is not completely free. Each r
Lua instrumentation needs to perform additional work (including memory allocation) to store source location. This approximately doubles the data collection cost.
You may use named colors predefined in `common/TracyColor.hpp` (included by `Tracy.hpp`). Visual reference: [wikipedia](https://en.wikipedia.org/wiki/X11_color_names).
+
+Tracy server will perform statistical data collection on the fly, if the macro `TRACY_NO_STATISTICS` is not defined. This allows extended analysis of the trace (for example, you can perform a live search for matching zones) at a small CPU processing cost and a considerable memory usage increase (at least 8 bytes per zone).