forked from organicmaps/organicmaps
Fixed z-order of start and finish points in point-to-point mode
This commit is contained in:
parent
37da72a3c0
commit
a1f9571a78
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
#include "render/route_shape.hpp"
|
||||
#include "render/gpu_drawer.hpp"
|
||||
|
||||
#include "graphics/depth_constants.hpp"
|
||||
#include "graphics/geometry_pipeline.hpp"
|
||||
#include "graphics/resource.hpp"
|
||||
#include "graphics/opengl/texture.hpp"
|
||||
|
@ -389,7 +390,7 @@ void RouteRenderer::CreateRoutePointGraphics(graphics::Screen * dlScreen, bool s
|
|||
|
||||
pnt.m_displayList = dlScreen->createDisplayList();
|
||||
dlScreen->setDisplayList(pnt.m_displayList);
|
||||
dlScreen->drawSymbol(pnt.m_point, start ? "route_from" : "route_to", graphics::EPosCenter, 0);
|
||||
dlScreen->drawSymbol(pnt.m_point, start ? "route_from" : "route_to", graphics::EPosCenter, graphics::maxDepth);
|
||||
dlScreen->setDisplayList(nullptr);
|
||||
|
||||
pnt.m_needUpdate = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue