From a285604eb223e6590c99558d071bfc3983eefc3b Mon Sep 17 00:00:00 2001 From: Tobias Frisch <tfrisch@uni-koblenz.de> Date: Wed, 30 Jun 2021 23:00:05 +0200 Subject: [PATCH] [#82] Removed debug prints Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de> --- projects/voxelization/src/main.cpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/projects/voxelization/src/main.cpp b/projects/voxelization/src/main.cpp index 0270dd91..edc50c55 100644 --- a/projects/voxelization/src/main.cpp +++ b/projects/voxelization/src/main.cpp @@ -550,14 +550,6 @@ int main(int argc, const char** argv) { if (!core.beginFrame(swapchainWidth, swapchainHeight)) { continue; } - - if ((swapchainWidth < 2) || (swapchainHeight < 2)) { - std::cerr << "A" << std::endl; - } - - if ((windowWidth < 2) || (windowHeight < 2)) { - std::cerr << "B" << std::endl; - } if ((swapchainWidth != windowWidth) || ((swapchainHeight != windowHeight))) { depthBuffer = core.createImage(depthBufferFormat, swapchainWidth, swapchainHeight, 1, false, false, false, msaa).getHandle(); @@ -575,14 +567,6 @@ int main(int argc, const char** argv) { bloomFlares.updateImageDimensions(windowWidth, windowHeight); } - - if ((swapchainWidth < 2) || (swapchainHeight < 2)) { - std::cerr << "C" << std::endl; - } - - if ((windowWidth < 2) || (windowHeight < 2)) { - std::cerr << "D" << std::endl; - } auto end = std::chrono::system_clock::now(); auto deltatime = std::chrono::duration_cast<std::chrono::microseconds>(end - start); -- GitLab