Visualizer: fix clang build error
Signed-off-by: Jacob Hilliard <jhlliar@amazon.com>
This commit is contained in:
@@ -33,7 +33,7 @@ namespace AZ
|
||||
void ResetPerFrameStatistics();
|
||||
|
||||
// Get a string of all threads that this region executed in during the last frame
|
||||
AZStd::string TableRow::GetExecutingThreadsLabel() const;
|
||||
AZStd::string GetExecutingThreadsLabel() const;
|
||||
|
||||
AZStd::string m_groupName;
|
||||
AZStd::string m_regionName;
|
||||
|
||||
@@ -180,7 +180,7 @@ namespace AZ
|
||||
ImGui::Text("%.2f", CpuProfilerImGuiHelper::TicksToMs(statistics->m_maxTicks));
|
||||
ImGui::TableNextColumn();
|
||||
|
||||
ImGui::Text("%ld", statistics->m_invocationsLastFrame);
|
||||
ImGui::Text("%llu", statistics->m_invocationsLastFrame);
|
||||
ImGui::TableNextColumn();
|
||||
|
||||
ImGui::Text("%.2f", CpuProfilerImGuiHelper::TicksToMs(statistics->m_lastFrameTotalTicks));
|
||||
|
||||
Reference in New Issue
Block a user