From 4ea1f01d61deeb11277e79c2e6cac71201048240 Mon Sep 17 00:00:00 2001 From: Daria Volvenkova Date: Thu, 26 Nov 2015 11:56:11 +0300 Subject: [PATCH] Fixed rendering of position accuracy and position mark. Depth changed to avoid intersection with the clipping planes. --- drape/depth_constants.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drape/depth_constants.hpp b/drape/depth_constants.hpp index e5e8b7dd14..516f5606ee 100644 --- a/drape/depth_constants.hpp +++ b/drape/depth_constants.hpp @@ -8,8 +8,8 @@ namespace dp namespace depth { -float const POSITION_ACCURACY = minDepth; -float const MY_POSITION_MARK = maxDepth; +float const POSITION_ACCURACY = minDepth + 1.0f; +float const MY_POSITION_MARK = maxDepth - 1.0f; } // namespace depth