From 81543d918554ba26b6823b1ca8362ddbb426f3a7 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Sun, 19 Jul 2015 19:06:21 -0700 Subject: [PATCH] Removing unneeded undef --- interface/src/avatar/Avatar.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/interface/src/avatar/Avatar.cpp b/interface/src/avatar/Avatar.cpp index 979995360e..5b6e53be53 100644 --- a/interface/src/avatar/Avatar.cpp +++ b/interface/src/avatar/Avatar.cpp @@ -706,9 +706,6 @@ Transform Avatar::calculateDisplayNameTransform(const ViewFrustum& frustum, floa // Compute pixel alignment offset float clipToPix = 0.5f * windowSizeY / p1.w; // Got from clip to pixel coordinates glm::vec4 screenPos = clipToPix * p1; // in pixels coords -// WTF? -#undef round - glm::vec4 screenOffset = (glm::round(screenPos) - screenPos) / clipToPix; // in clip coords glm::vec3 worldOffset = glm::vec3(screenOffset.x, screenOffset.y, 0.0f) / (float)pixelHeight;