summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/layer.cpp.ejs
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-05-09 14:34:21 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-05-15 09:45:55 -0700
commit2690a65f8dc9e920c16af3264864321295f7daa8 (patch)
tree38e106dd6ab48d68a4a6d0ea5e3705cebcd1435d /src/mbgl/style/layers/layer.cpp.ejs
parent3fa9f3c9e8fa99bef08f244755368e0879672074 (diff)
downloadqtlocation-mapboxgl-2690a65f8dc9e920c16af3264864321295f7daa8.tar.gz
[core] *LayerImpl::cascading ⇢ paint
Diffstat (limited to 'src/mbgl/style/layers/layer.cpp.ejs')
-rw-r--r--src/mbgl/style/layers/layer.cpp.ejs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mbgl/style/layers/layer.cpp.ejs b/src/mbgl/style/layers/layer.cpp.ejs
index 31a4332400..b07f7db307 100644
--- a/src/mbgl/style/layers/layer.cpp.ejs
+++ b/src/mbgl/style/layers/layer.cpp.ejs
@@ -40,7 +40,7 @@ Mutable<<%- camelize(type) %>Layer::Impl> <%- camelize(type) %>Layer::mutableImp
std::unique_ptr<Layer> <%- camelize(type) %>Layer::cloneRef(const std::string& id_) const {
auto impl_ = mutableImpl();
impl_->id = id_;
- impl_->cascading = <%- camelize(type) %>PaintProperties::Cascading();
+ impl_->paint = <%- camelize(type) %>PaintProperties::Cascading();
return std::make_unique<<%- camelize(type) %>Layer>(std::move(impl_));
}
@@ -139,14 +139,14 @@ void <%- camelize(type) %>Layer::set<%- camelize(property.name) %>(<%- propertyV
}
<%- propertyValueType(property) %> <%- camelize(type) %>Layer::get<%- camelize(property.name) %>(const optional<std::string>& klass) const {
- return impl().cascading.template get<<%- camelize(property.name) %>>().get(klass);
+ return impl().paint.template get<<%- camelize(property.name) %>>().get(klass);
}
void <%- camelize(type) %>Layer::set<%- camelize(property.name) %>(<%- propertyValueType(property) %> value, const optional<std::string>& klass) {
if (value == get<%- camelize(property.name) %>(klass))
return;
auto impl_ = mutableImpl();
- impl_->cascading.template get<<%- camelize(property.name) %>>().set(value, klass);
+ impl_->paint.template get<<%- camelize(property.name) %>>().set(value, klass);
baseImpl = std::move(impl_);
<% if (isDataDriven(property)) { -%>
if (value.isDataDriven()) {
@@ -161,12 +161,12 @@ void <%- camelize(type) %>Layer::set<%- camelize(property.name) %>(<%- propertyV
void <%- camelize(type) %>Layer::set<%- camelize(property.name) %>Transition(const TransitionOptions& value, const optional<std::string>& klass) {
auto impl_ = mutableImpl();
- impl_->cascading.template get<<%- camelize(property.name) %>>().setTransition(value, klass);
+ impl_->paint.template get<<%- camelize(property.name) %>>().setTransition(value, klass);
baseImpl = std::move(impl_);
}
TransitionOptions <%- camelize(type) %>Layer::get<%- camelize(property.name) %>Transition(const optional<std::string>& klass) const {
- return impl().cascading.template get<<%- camelize(property.name) %>>().getTransition(klass);
+ return impl().paint.template get<<%- camelize(property.name) %>>().getTransition(klass);
}
<% } -%>