summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/custom_layer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/layers/custom_layer.cpp')
-rw-r--r--src/mbgl/style/layers/custom_layer.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mbgl/style/layers/custom_layer.cpp b/src/mbgl/style/layers/custom_layer.cpp
new file mode 100644
index 0000000000..3407a7f5a5
--- /dev/null
+++ b/src/mbgl/style/layers/custom_layer.cpp
@@ -0,0 +1,24 @@
+#include <mbgl/style/layers/custom_layer.hpp>
+#include <mbgl/style/layers/custom_layer_impl.hpp>
+
+namespace mbgl {
+namespace style {
+
+CustomLayer::CustomLayer(const std::string& layerID,
+ CustomLayerInitializeFunction init,
+ CustomLayerRenderFunction render,
+ CustomLayerDeinitializeFunction deinit,
+ void* context)
+ : Layer(Type::Custom, std::make_unique<Impl>(layerID, init, render, deinit, context))
+ , impl(static_cast<Impl*>(baseImpl.get())) {
+}
+
+CustomLayer::CustomLayer(const Impl& other)
+ : Layer(Type::Custom, std::make_unique<Impl>(other))
+ , impl(static_cast<Impl*>(baseImpl.get())) {
+}
+
+CustomLayer::~CustomLayer() = default;
+
+} // namespace style
+} // namespace mbgl