forked from organicmaps/organicmaps
Fixed displaying of lines from KML
This commit is contained in:
parent
f2384db29f
commit
e2e167cf93
3 changed files with 12 additions and 3 deletions
|
@ -1161,9 +1161,11 @@ void FrontendRenderer::RenderUserMarksLayer(ScreenBase const & modelView)
|
|||
for (auto const & group : m_userMarkRenderGroups)
|
||||
{
|
||||
ASSERT(group.get() != nullptr, ());
|
||||
if (m_userMarkVisibility.find(group->GetLayerId()) != m_userMarkVisibility.end() &&
|
||||
screenRect.IsIntersect(group->GetTileKey().GetGlobalRect()))
|
||||
RenderSingleGroup(modelView, make_ref(group));
|
||||
if (m_userMarkVisibility.find(group->GetLayerId()) != m_userMarkVisibility.end())
|
||||
{
|
||||
if (!group->CanBeClipped() || screenRect.IsIntersect(group->GetTileKey().GetGlobalRect()))
|
||||
RenderSingleGroup(modelView, make_ref(group));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -242,6 +242,11 @@ size_t UserMarkRenderGroup::GetLayerId() const
|
|||
return m_layerId;
|
||||
}
|
||||
|
||||
bool UserMarkRenderGroup::CanBeClipped() const
|
||||
{
|
||||
return m_state.GetProgramIndex() != gpu::LINE_PROGRAM;
|
||||
}
|
||||
|
||||
string DebugPrint(RenderGroup const & group)
|
||||
{
|
||||
ostringstream out;
|
||||
|
|
|
@ -105,6 +105,8 @@ public:
|
|||
|
||||
size_t GetLayerId() const;
|
||||
|
||||
bool CanBeClipped() const;
|
||||
|
||||
private:
|
||||
drape_ptr<dp::RenderBucket> m_renderBucket;
|
||||
unique_ptr<OpacityAnimation> m_animation;
|
||||
|
|
Loading…
Add table
Reference in a new issue