removed some words from Performance window
This commit is contained in:
parent
3328d3c2fa
commit
d77de75918
@ -101,7 +101,7 @@ void PerformanceWindow::Show(float fps, float ms)
|
|||||||
|
|
||||||
// Graphs for FPS + MS
|
// Graphs for FPS + MS
|
||||||
// min = 0, max = s_FpsScale or s_MsScale
|
// min = 0, max = s_FpsScale or s_MsScale
|
||||||
ImGui::PlotLines("FPS (60 frames)",
|
ImGui::PlotLines("FPS",
|
||||||
s_FpsHistory,
|
s_FpsHistory,
|
||||||
IM_ARRAYSIZE(s_FpsHistory),
|
IM_ARRAYSIZE(s_FpsHistory),
|
||||||
0,
|
0,
|
||||||
@ -123,7 +123,7 @@ void PerformanceWindow::Show(float fps, float ms)
|
|||||||
|
|
||||||
// Show OpenGL calls + Triangles
|
// Show OpenGL calls + Triangles
|
||||||
ImGui::Text("OpenGL Calls: %d", m_OpenGLCallCount);
|
ImGui::Text("OpenGL Calls: %d", m_OpenGLCallCount);
|
||||||
ImGui::PlotLines("GL Calls (60 frames)",
|
ImGui::PlotLines("GL Calls",
|
||||||
s_CallsHistory,
|
s_CallsHistory,
|
||||||
IM_ARRAYSIZE(s_CallsHistory),
|
IM_ARRAYSIZE(s_CallsHistory),
|
||||||
0,
|
0,
|
||||||
@ -133,7 +133,7 @@ void PerformanceWindow::Show(float fps, float ms)
|
|||||||
ImVec2(0, 50));
|
ImVec2(0, 50));
|
||||||
|
|
||||||
ImGui::Text("Triangles: %d", m_TriangleCount);
|
ImGui::Text("Triangles: %d", m_TriangleCount);
|
||||||
ImGui::PlotHistogram("Triangles (60 frames)",
|
ImGui::PlotHistogram("Triangles",
|
||||||
s_TriangleHistory,
|
s_TriangleHistory,
|
||||||
IM_ARRAYSIZE(s_TriangleHistory),
|
IM_ARRAYSIZE(s_TriangleHistory),
|
||||||
0,
|
0,
|
||||||
|
Loading…
Reference in New Issue
Block a user