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:16:53 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2018-06-22 01:16:53 +0300
commited40a3d9899da9760f77ab543804cde4e5aaa18e (patch)
treed5082bef59fe65c505ca533867ea92ac5c7c6723 /README.md
parent63611403ff735ee6afa0c59baf66a469a6e0277b (diff)
Discourage embedding server into client application.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 33ed78d6..fbd8af80 100644
--- a/README.md
+++ b/README.md
@@ -57,7 +57,7 @@ The easiest way to get going is to build the standalone server, available in the
If you prefer to inspect the data only after a trace has been performed, you may use the command line utility in the `capture` directory. It will save a data dump that may be later opened in the graphical viewer application.
-Alternatively, you may want to embed the server in your application, the same which is running the client part of tracy. Doing so requires that you also include the `server` and `imgui` directories. Include the `tracy/server/TracyView.hpp` header file, create an instance of the `tracy::View` class and call its `Draw()` method every frame. Unfortunately, there's also the hard part - you need to integrate the imgui library into the innards of your program. How to do so is outside the scope of this document.
+Alternatively, you may want to embed the server in your application, the same which is running the client part of tracy.
#### Marking zones