summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/fill_extrusion_layer_impl.cpp
blob: 5340541221e1a59fbd4429c42eaeed93577637ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <mbgl/style/layers/fill_extrusion_layer_impl.hpp>
#include <mbgl/renderer/render_fill_extrusion_layer.hpp>

namespace mbgl {
namespace style {

std::unique_ptr<RenderLayer> FillExtrusionLayer::Impl::createRenderLayer() const {
    return std::make_unique<RenderFillExtrusionLayer>(*this);
}

} // namespace style
} // namespace mbgl