mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-05 06:42:57 +02:00
Use green rather than red for better blob visibility.
This commit is contained in:
parent
799d2b487f
commit
4720eac922
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ void Webcam::renderPreview(int screenWidth, int screenHeight) {
|
|||
glVertex2f(left + facePoints[3].x * xScale, top + facePoints[3].y * yScale);
|
||||
glEnd();
|
||||
|
||||
glColor3f(1.0f, 0.0f, 0.0f);
|
||||
glColor3f(0.0f, 1.0f, 0.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);
|
||||
|
|
Loading…
Reference in a new issue