-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement an alternative way to pass parameters (#30)
* init commit * review changes * remove unused extern var * Apply suggestions from code review Co-authored-by: Björn Dahlgren <[email protected]> * removed json header, from scriptProfiler.hpp. changed to pass file path out through data pointer for linux * Dedmen's genius idea * submodule update * Update src/scriptProfiler.cpp --------- Co-authored-by: Dedmen Miller <[email protected]> Co-authored-by: Björn Dahlgren <[email protected]>
- Loading branch information
1 parent
8e4bb6f
commit 9efeca7
Showing
7 changed files
with
112 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"profilerAdapter": "Tracy", | ||
"profilerOutput": "", | ||
"profilerEnableInstruction": true, | ||
"profilerEnableEngine": false, | ||
"profilerEngineThreads": false, | ||
"profilerEngineDoFile": false, | ||
"profilerEngineDoMem": false, | ||
"profilerNoPaths": false, | ||
"profilerNoInstrumentation": false, | ||
"profilerEnableFAlloc": false, | ||
"profilerEnableNetwork": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule tracy
updated
11 files
+22 −23 | client/TracyCallstack.h | |
+0 −47 | client/TracyProfiler.cpp | |
+8 −17 | client/TracyScoped.hpp | |
+1 −1 | client/TracyThread.hpp | |
+0 −2 | common/TracyQueue.hpp | |
+0 −6 | common/TracySystem.cpp | |
+1 −1 | profiler/build/win32/Tracy.vcxproj | |
+15 −11 | server/TracyView.cpp | |
+1 −1 | server/TracyView.hpp | |
+2 −2 | server/TracyViewData.hpp | |
+0 −1 | server/TracyWorker.cpp |