Home
last modified time | relevance | path

Searched refs:opacities (Results 1 – 2 of 2) 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()
203 if (prevOpacity != prevPlacement.opacities.end()) { in commit()
204opacities.emplace(jointPlacement.first, JointOpacityState(prevOpacity->second, increment, jointPla… in commit()
209opacities.emplace(jointPlacement.first, JointOpacityState(jointPlacement.second.text, jointPlaceme… in commit()
215 for (auto& prevOpacity : prevPlacement.opacities) { in commit()
216 if (opacities.find(prevOpacity.first) == opacities.end()) { in commit()
219 opacities.emplace(prevOpacity.first, jointOpacity); in commit()
265 auto it = opacities.find(symbolInstance.crossTileID); in updateBucketOpacities()
269 } else if (it != opacities.end()) { in updateBucketOpacities()
273 if (it == opacities.end()) { in updateBucketOpacities()
[all …]
H A Dplacement.hpp101 std::unordered_map<uint32_t, JointOpacityState> opacities; member in mbgl::Placement