From e5e2f7ca00cd1bfbd71ce6d50be9715db4d20b41 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Tue, 27 Aug 2013 17:00:55 -0700 Subject: [PATCH] Bump up the line width to make it easier to see the blobs. --- interface/src/Webcam.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/src/Webcam.cpp b/interface/src/Webcam.cpp index bc6bc8e369..e0d7de28f4 100644 --- a/interface/src/Webcam.cpp +++ b/interface/src/Webcam.cpp @@ -142,10 +142,12 @@ void Webcam::renderPreview(int screenWidth, int screenHeight) { glEnd(); glColor3f(0.0f, 1.0f, 0.0f); + glLineWidth(3.0f); for (KeyPointVector::iterator it = _keyPoints.begin(); it != _keyPoints.end(); it++) { renderCircle(glm::vec3(left + it->pt.x * xScale, top + it->pt.y * yScale, 0.0f), it->size * 0.5f, glm::vec3(0.0f, 0.0f, 1.0f), 8); } + glLineWidth(1.0f); const int MAX_FPS_CHARACTERS = 30; char fps[MAX_FPS_CHARACTERS];