summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/fill_extrusion_layer_impl.cpp
blob: 357ea3e973f07b2299581903d1f04109bd9be6c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <mbgl/style/layers/fill_extrusion_layer_impl.hpp>

namespace mbgl {
namespace style {

bool FillExtrusionLayer::Impl::hasLayoutDifference(const Layer::Impl& other) const {
    assert(other.type == LayerType::FillExtrusion);
    const auto& impl = static_cast<const style::FillExtrusionLayer::Impl&>(other);
    return filter     != impl.filter ||
           visibility != impl.visibility ||
           paint.hasDataDrivenPropertyDifference(impl.paint);
}

} // namespace style
} // namespace mbgl