Searched refs:staticImmutableCast (Results 1 – 3 of 3) sorted by relevance
24 return std::make_unique<RenderFillLayer>(staticImmutableCast<FillLayer::Impl>(impl)); in create()26 return std::make_unique<RenderLineLayer>(staticImmutableCast<LineLayer::Impl>(impl)); in create()28 return std::make_unique<RenderCircleLayer>(staticImmutableCast<CircleLayer::Impl>(impl)); in create()30 return std::make_unique<RenderSymbolLayer>(staticImmutableCast<SymbolLayer::Impl>(impl)); in create()32 return std::make_unique<RenderRasterLayer>(staticImmutableCast<RasterLayer::Impl>(impl)); in create()34 … return std::make_unique<RenderHillshadeLayer>(staticImmutableCast<HillshadeLayer::Impl>(impl)); in create()36 … return std::make_unique<RenderBackgroundLayer>(staticImmutableCast<BackgroundLayer::Impl>(impl)); in create()38 return std::make_unique<RenderCustomLayer>(staticImmutableCast<CustomLayer::Impl>(impl)); in create()40 …return std::make_unique<RenderFillExtrusionLayer>(staticImmutableCast<FillExtrusionLayer::Impl>(im… in create()42 return std::make_unique<RenderHeatmapLayer>(staticImmutableCast<HeatmapLayer::Impl>(impl)); in create()
20 return std::make_unique<RenderVectorSource>(staticImmutableCast<VectorSource::Impl>(impl)); in create()22 return std::make_unique<RenderRasterSource>(staticImmutableCast<RasterSource::Impl>(impl)); in create()24 … return std::make_unique<RenderRasterDEMSource>(staticImmutableCast<RasterSource::Impl>(impl)); in create()26 … return std::make_unique<RenderGeoJSONSource>(staticImmutableCast<GeoJSONSource::Impl>(impl)); in create()31 …return std::make_unique<RenderAnnotationSource>(staticImmutableCast<AnnotationSource::Impl>(impl)); in create()33 return std::make_unique<RenderImageSource>(staticImmutableCast<ImageSource::Impl>(impl)); in create()35 …return std::make_unique<RenderCustomGeometrySource>(staticImmutableCast<CustomGeometrySource::Impl… in create()
110 template <class S, class U> friend Immutable<S> staticImmutableCast(const Immutable<U>&);114 Immutable<S> staticImmutableCast(const Immutable<U>& u) { in staticImmutableCast() function