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 15:29:32 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-04 15:31:02 +0300
commitad2fc0312545a62138ebde985ea1d429ddd13cae (patch)
tree411191e5559551a6c71a1461bc2e9da05dc5710c /profiler
parent827b390e34b5915402d83db4f2b730d2b9744301 (diff)
Migrate CPU data to 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 d582aa87..bc99f75a 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\TracyTimelineItemCpuData.cpp" />
<ClCompile Include="..\..\..\server\TracyTimelineItemGpu.cpp" />
<ClCompile Include="..\..\..\server\TracyTimelineItemPlot.cpp" />
<ClCompile Include="..\..\..\server\TracyTimelineItemThread.cpp" />
@@ -279,6 +280,7 @@
<ClInclude Include="..\..\..\server\TracyThreadCompress.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineController.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineItem.hpp" />
+ <ClInclude Include="..\..\..\server\TracyTimelineItemCpuData.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineItemGpu.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineItemPlot.hpp" />
<ClInclude Include="..\..\..\server\TracyTimelineItemThread.hpp" />
diff --git a/profiler/build/win32/Tracy.vcxproj.filters b/profiler/build/win32/Tracy.vcxproj.filters
index c362dd55..e6d4ba20 100644
--- a/profiler/build/win32/Tracy.vcxproj.filters
+++ b/profiler/build/win32/Tracy.vcxproj.filters
@@ -372,6 +372,9 @@
<ClCompile Include="..\..\..\server\TracyView_GpuTimeline.cpp">
<Filter>server</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\server\TracyTimelineItemCpuData.cpp">
+ <Filter>server</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\server\TracyEvent.hpp">
@@ -752,6 +755,9 @@
<ClInclude Include="..\..\..\server\TracyTimelineItemGpu.hpp">
<Filter>server</Filter>
</ClInclude>
+ <ClInclude Include="..\..\..\server\TracyTimelineItemCpuData.hpp">
+ <Filter>server</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<Natvis Include="DebugVis.natvis" />