#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace mbgl { using namespace style; std::unique_ptr RenderLayer::create(Immutable impl) { switch (impl->type) { case LayerType::Fill: return std::make_unique(staticImmutableCast(impl)); case LayerType::Line: return std::make_unique(staticImmutableCast(impl)); case LayerType::Circle: return std::make_unique(staticImmutableCast(impl)); case LayerType::Symbol: return std::make_unique(staticImmutableCast(impl)); case LayerType::Raster: return std::make_unique(staticImmutableCast(impl)); case LayerType::Hillshade: return std::make_unique(staticImmutableCast(impl)); case LayerType::Background: return std::make_unique(staticImmutableCast(impl)); case LayerType::Custom: return std::make_unique(staticImmutableCast(impl)); case LayerType::FillExtrusion: return std::make_unique(staticImmutableCast(impl)); case LayerType::Heatmap: return std::make_unique(staticImmutableCast(impl)); } // Not reachable, but placate GCC. assert(false); return nullptr; } RenderLayer::RenderLayer(style::LayerType type_, Immutable baseImpl_) : type(type_), baseImpl(baseImpl_) { } void RenderLayer::setImpl(Immutable impl) { baseImpl = impl; } const std::string& RenderLayer::getID() const { return baseImpl->id; } bool RenderLayer::hasRenderPass(RenderPass pass) const { return bool(passes & pass); } bool RenderLayer::needsRendering(float zoom) const { return passes != RenderPass::None && baseImpl->visibility != style::VisibilityType::None && baseImpl->minZoom <= zoom && baseImpl->maxZoom >= zoom; } void RenderLayer::setRenderTiles(std::vector> tiles) { renderTiles = std::move(tiles); } void RenderLayer::checkRenderability(const PaintParameters& parameters, const uint32_t activeBindingCount) { // Only warn once for every layer. if (hasRenderFailures) { return; } if (activeBindingCount > parameters.context.maximumVertexBindingCount) { Log::Error(Event::OpenGL, "The layer '%s' uses more data-driven properties than the current device " "supports, and will have rendering errors. To ensure compatibility with this " "device, use %d fewer data driven properties in this layer.", getID().c_str(), activeBindingCount - parameters.context.minimumRequiredVertexBindingCount); hasRenderFailures = true; } else if (activeBindingCount > parameters.context.minimumRequiredVertexBindingCount) { Log::Error(Event::OpenGL, "The layer '%s' uses more data-driven properties than some devices may support. " "Though it will render correctly on this device, it may have rendering errors " "on other devices. To ensure compatibility with all devices, use %d fewer " "data-driven properties in this layer.", getID().c_str(), activeBindingCount - parameters.context.minimumRequiredVertexBindingCount); hasRenderFailures = true; } } } //namespace mbgl