diff --git a/drape_frontend/area_shape.cpp b/drape_frontend/area_shape.cpp index 46c94e5cc1..ff702c0a72 100644 --- a/drape_frontend/area_shape.cpp +++ b/drape_frontend/area_shape.cpp @@ -41,7 +41,10 @@ void AreaShape::Draw(ref_ptr context, ref_ptr } if (m_params.m_is3D) - DrawArea3D(context, batcher, colorUv, outlineUv, region.GetTexture()); + { + if (m_vertexes.size() < 10000) + DrawArea3D(context, batcher, colorUv, outlineUv, region.GetTexture()); + } else if (m_params.m_hatching) DrawHatchingArea(context, batcher, colorUv, region.GetTexture(), textures->GetHatchingTexture()); else diff --git a/drape_frontend/backend_renderer.cpp b/drape_frontend/backend_renderer.cpp index 43216af1a9..6f127ce92b 100644 --- a/drape_frontend/backend_renderer.cpp +++ b/drape_frontend/backend_renderer.cpp @@ -695,7 +695,9 @@ void BackendRenderer::RenderFrame() void BackendRenderer::InitContextDependentResources() { + // Increase this value for big features. uint32_t constexpr kBatchSize = 5000; + m_batchersPool = make_unique_dp>(kReadingThreadsCount, std::bind(&BackendRenderer::FlushGeometry, this, _1, _2, _3), kBatchSize, kBatchSize);