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-06-22 01:25:30 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2018-06-22 01:25:30 +0300
commit8de92a8c9e814a419b83a975c72d8b7460524071 (patch)
tree3fda956a042377104d59e378a87175513a715804 /README.md
parent7086320d64a41b4d5f454a5aad3eb0d970d2a894 (diff)
String pooling is meh.
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/README.md b/README.md
index 72f3db0d..1d7ac72d 100644
--- a/README.md
+++ b/README.md
@@ -140,7 +140,6 @@ You also need to periodically collect the GPU events using the `TracyVkCollect(
## Good practices
- Remember to set thread names for proper identification of threads. You may use the functions exposed in the `tracy/common/TracySystem.hpp` header to do so.
-- Enable the MSVC String Pooling option (`/GF`) or the gcc counterpart, `-fmerge-constants`. This will reduce number of queries the server needs to perform to the client. Note that these options are enabled in optimized builds by default.
## Practical considerations