From b05d6e25e3b9aa7034bbdea59f17b40b99fb71f1 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Wed, 23 Oct 2013 10:23:07 -0700 Subject: [PATCH] remove two debug outs --- interface/src/VoxelSystem.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/interface/src/VoxelSystem.cpp b/interface/src/VoxelSystem.cpp index 0750af714e..c166c57f3a 100644 --- a/interface/src/VoxelSystem.cpp +++ b/interface/src/VoxelSystem.cpp @@ -1838,7 +1838,6 @@ public: }; void VoxelSystem::hideOutOfView(bool forceFullFrustum) { - printf("VoxelSystem::hideOutOfView(bool forceFullFrustum=%s)\n",debug::valueOf(forceFullFrustum)); bool showDebugDetails = Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings); PerformanceWarning warn(showDebugDetails, "hideOutOfView()", showDebugDetails); bool widenFrustum = true; @@ -1869,7 +1868,7 @@ void VoxelSystem::hideOutOfView(bool forceFullFrustum) { } if (!forceFullFrustum && _culledOnce && args.lastViewFrustum.matches(args.thisViewFrustum)) { - printf("view frustum hasn't changed BAIL!!!\n"); + //printf("view frustum hasn't changed BAIL!!!\n"); return; }