Skip to content

Commit

Permalink
Add Vert/Tex Count Displays (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
datacrystals committed May 10, 2022
1 parent d36d933 commit 9f3addb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ void ERS_CLASS_VisualRenderer::DrawViewportMenu(int Index, ERS_CLASS_SceneManage
ImGui::MenuItem("Scene Info Overlay", nullptr, &Viewports_[Index]->ShowSceneInfo_);
ImGui::MenuItem("System Resources Overlay", nullptr, &Viewports_[Index]->ShowResourceInfo_);
ImGui::MenuItem("Loading Time Overlay", nullptr, &Viewports_[Index]->ShowLoadingTimeInfo_);

ImGui::Separator();

ImGui::MenuItem("Rotation Indicator", nullptr, &Viewports_[Index]->ShowCube);
Expand Down Expand Up @@ -1012,7 +1012,7 @@ void ERS_CLASS_VisualRenderer::DrawViewportMenu(int Index, ERS_CLASS_SceneManage

void ERS_CLASS_VisualRenderer::DrawViewportOverlay(int Index, ERS_CLASS_SceneManager* SceneManager) {

// Draw Scene Info
// Draw Scene Info Overlay
if (Viewports_[Index]->ShowSceneInfo_) {

// Generate Info
Expand Down Expand Up @@ -1045,7 +1045,7 @@ void ERS_CLASS_VisualRenderer::DrawViewportOverlay(int Index, ERS_CLASS_SceneMan
}


// Show System Resources Info
// Show System Resources Info Overlay
if (Viewports_[Index]->ShowResourceInfo_) {

// Generate Info
Expand All @@ -1066,7 +1066,7 @@ void ERS_CLASS_VisualRenderer::DrawViewportOverlay(int Index, ERS_CLASS_SceneMan

}

// Show Loading Time Info
// Show Loading Time Info Overlay
if (Viewports_[Index]->ShowLoadingTimeInfo_) {

// Generate Info
Expand Down

0 comments on commit 9f3addb

Please sign in to comment.