Home
last modified time | relevance | path

Searched refs:prevOpacity (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dplacement.cpp202 auto prevOpacity = prevPlacement.opacities.find(jointPlacement.first); in commit() local
203 if (prevOpacity != prevPlacement.opacities.end()) { in commit()
204 …opacities.emplace(jointPlacement.first, JointOpacityState(prevOpacity->second, increment, jointPla… in commit()
206 jointPlacement.second.icon != prevOpacity->second.icon.placed || in commit()
207 jointPlacement.second.text != prevOpacity->second.text.placed; in commit()
215 for (auto& prevOpacity : prevPlacement.opacities) { in commit() local
216 if (opacities.find(prevOpacity.first) == opacities.end()) { in commit()
217 JointOpacityState jointOpacity(prevOpacity.second, increment, false, false); in commit()
219 opacities.emplace(prevOpacity.first, jointOpacity); in commit()
220 …placementChanged = placementChanged || prevOpacity.second.icon.placed || prevOpacity.second.text.p… in commit()