#include namespace mbgl { namespace style { CustomLayer::Impl::Impl(const std::string& id_, CustomLayerInitializeFunction initializeFn_, CustomLayerRenderFunction renderFn_, CustomLayerDeinitializeFunction deinitializeFn_, void* context_) : Layer::Impl(LayerType::Custom, id_, std::string()) { initializeFn = initializeFn_; renderFn = renderFn_; deinitializeFn = deinitializeFn_; context = context_; } bool CustomLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { return false; } void CustomLayer::Impl::stringifyLayout(rapidjson::Writer&) const { } } // namespace style } // namespace mbgl