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@nereid.pl>2022-09-04 00:28:54 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-04 00:28:54 +0300
commitec3dcaeef38f0ec909e93626d4ff6dea0213be58 (patch)
tree29b1a6aa394b53bc93110e7c7b1d236c9ec2818f /profiler
parente3007062fcfe81ac3c121bcea7bc6ed87e5eb299 (diff)
Migrate drawing CPU threads to the new timeline item system.
Diffstat (limited to 'profiler')
-rw-r--r--profiler/build/win32/Tracy.vcxproj2
-rw-r--r--profiler/build/win32/Tracy.vcxproj.filters6
2 files changed, 8 insertions, 0 deletions
diff --git a/profiler/build/win32/Tracy.vcxproj b/profiler/build/win32/Tracy.vcxproj
index bad3d63a..449381d5 100644
--- a/profiler/build/win32/Tracy.vcxproj
+++ b/profiler/build/win32/Tracy.vcxproj
@@ -139,6 +139,7 @@
<ClCompile Include="..\..\..\server\TracyTimelineController.cpp" />
<ClCompile Include="..\..\..\server\TracyTimelineItem.cpp" />
<ClCompile Include="..\..\..\server\TracyTimelineItemPlot.cpp" />
+ <ClCompile Include="..\..\..\server\TracyTimelineItemThread.cpp" />
<ClCompile Include="..\..\..\server\TracyUserData.cpp" />
<ClCompile Include="..\..\..\server\TracyUtility.cpp" />
<ClCompile Include="..\..\..\server\TracyView.cpp" />
@@ -277,6 +278,7 @@
<ClInclude Include="..\..\..\server\TracyTimelineController.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineItem.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineItemPlot.hpp" />
+ <ClInclude Include="..\..\..\server\TracyTimelineItemThread.hpp" />
<ClInclude Include="..\..\..\server\TracyUserData.hpp" />
<ClInclude Include="..\..\..\server\TracyUtility.hpp" />
<ClInclude Include="..\..\..\server\TracyVarArray.hpp" />
diff --git a/profiler/build/win32/Tracy.vcxproj.filters b/profiler/build/win32/Tracy.vcxproj.filters
index f5d937d5..591fd453 100644
--- a/profiler/build/win32/Tracy.vcxproj.filters
+++ b/profiler/build/win32/Tracy.vcxproj.filters
@@ -363,6 +363,9 @@
<ClCompile Include="..\..\..\server\TracyTimelineItem.cpp">
<Filter>server</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\server\TracyTimelineItemThread.cpp">
+ <Filter>server</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\server\TracyEvent.hpp">
@@ -737,6 +740,9 @@
<ClInclude Include="..\..\..\server\TracyTimelineItemPlot.hpp">
<Filter>server</Filter>
</ClInclude>
+ <ClInclude Include="..\..\..\server\TracyTimelineItemThread.hpp">
+ <Filter>server</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<Natvis Include="DebugVis.natvis" />