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-03 17:54:46 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-03 18:51:33 +0300
commitb481bb367c59d400a22bfd9bcf55005134bcaead (patch)
tree95cb0d05816d7e79b550227f0b20819df8ca75dd /profiler/build
parent55a82ea7141360443c00e2823f4ef7c651dd24ee (diff)
Switch plot drawing to the timeline items system.
Diffstat (limited to 'profiler/build')
-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 a45e987f..bad3d63a 100644
--- a/profiler/build/win32/Tracy.vcxproj
+++ b/profiler/build/win32/Tracy.vcxproj
@@ -138,6 +138,7 @@
<ClCompile Include="..\..\..\server\TracyThreadCompress.cpp" />
<ClCompile Include="..\..\..\server\TracyTimelineController.cpp" />
<ClCompile Include="..\..\..\server\TracyTimelineItem.cpp" />
+ <ClCompile Include="..\..\..\server\TracyTimelineItemPlot.cpp" />
<ClCompile Include="..\..\..\server\TracyUserData.cpp" />
<ClCompile Include="..\..\..\server\TracyUtility.cpp" />
<ClCompile Include="..\..\..\server\TracyView.cpp" />
@@ -275,6 +276,7 @@
<ClInclude Include="..\..\..\server\TracyThreadCompress.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineController.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineItem.hpp" />
+ <ClInclude Include="..\..\..\server\TracyTimelineItemPlot.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 a0f18cf7..f5d937d5 100644
--- a/profiler/build/win32/Tracy.vcxproj.filters
+++ b/profiler/build/win32/Tracy.vcxproj.filters
@@ -357,6 +357,9 @@
<ClCompile Include="..\..\..\server\TracyUtility.cpp">
<Filter>server</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\server\TracyTimelineItemPlot.cpp">
+ <Filter>server</Filter>
+ </ClCompile>
<ClCompile Include="..\..\..\server\TracyTimelineItem.cpp">
<Filter>server</Filter>
</ClCompile>
@@ -731,6 +734,9 @@
<ClInclude Include="..\..\..\server\TracyTimelineItem.hpp">
<Filter>server</Filter>
</ClInclude>
+ <ClInclude Include="..\..\..\server\TracyTimelineItemPlot.hpp">
+ <Filter>server</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<Natvis Include="DebugVis.natvis" />