Remove debug prints

This commit is contained in:
2024-03-08 15:37:37 -05:00
parent 9408b35427
commit 834470279b

View File

@@ -115,7 +115,6 @@ namespace fgl::engine
while ( !m_window.shouldClose() )
{
std::cout << "Entering main loop" << std::endl;
ZoneScopedN( "Poll" );
glfwPollEvents();
@@ -139,11 +138,9 @@ namespace fgl::engine
#if ENABLE_IMGUI
{
std::cout << "Starting ImGui frame" << std::endl;
ImGui_ImplVulkan_NewFrame();
ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame();
std::cout << "Started ImGui frame" << std::endl;
}
#endif