From 357ac05d35de71bae1371bba117e5098c8529ea6 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Fri, 5 Jul 2013 22:58:57 -0700 Subject: [PATCH] Removed debug logging. --- interface/src/Webcam.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/interface/src/Webcam.cpp b/interface/src/Webcam.cpp index a81bec8ddd..28026697a9 100644 --- a/interface/src/Webcam.cpp +++ b/interface/src/Webcam.cpp @@ -108,16 +108,11 @@ void Webcam::renderPreview(int screenWidth, int screenHeight) { glPointSize(4.0f); glBegin(GL_POINTS); float projectedScale = PREVIEW_HEIGHT / (float)_depthHeight; - int idx = 0; foreach (const Joint& joint, _joints) { if (joint.isValid) { - if (joint.projected.x == 0.0f && joint.projected.y == 0.0f) { - printLog("%d\n", idx); - } glVertex2f(depthLeft + joint.projected.x * projectedScale, top - PREVIEW_HEIGHT + joint.projected.y * projectedScale); } - idx++; } glEnd(); glPointSize(1.0f);