Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dsymbol_program.hpp123 virtual ZoomEvaluatedSize evaluateForZoom(float currentZoom) const = 0;
125 UniformValues uniformValues(float currentZoom) const { in uniformValues()
126 const ZoomEvaluatedSize u = evaluateForZoom(currentZoom); in uniformValues()
157 ZoomEvaluatedSize evaluateForZoom(float currentZoom) const override { in evaluateForZoom()
169 expression->interpolationFactor(zoomLevels, currentZoom), in evaluateForZoom()
174 size = expression->evaluate(currentZoom); in evaluateForZoom()
228 ZoomEvaluatedSize evaluateForZoom(float currentZoom) const override { in evaluateForZoom()
230 expression.interpolationFactor(coveringZoomStops, currentZoom), in evaluateForZoom()
285 float currentZoom) { in computeAllUniformValues() argument
286 return uniformValues.concat(symbolSizeBinder.uniformValues(currentZoom)) in computeAllUniformValues()
[all …]
H A Dcollision_box_program.hpp71 float currentZoom, in draw() argument
74 .concat(paintPropertyBinders.uniformValues(currentZoom, currentProperties)); in draw()
150 float currentZoom, in draw() argument
153 .concat(paintPropertyBinders.uniformValues(currentZoom, currentProperties)); in draw()
H A Dprogram.hpp53 float currentZoom) { in computeAllUniformValues() argument
55 .concat(paintPropertyBinders.uniformValues(currentZoom, currentProperties)); in computeAllUniformValues()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dpaint_property_binder.hpp86 virtual float interpolationFactor(float currentZoom) const = 0;
220 float interpolationFactor(float currentZoom) const override { in interpolationFactor()
222 return expression.interpolationFactor(zoomRange, std::floor(currentZoom)); in interpolationFactor()
224 return expression.interpolationFactor(zoomRange, currentZoom); in interpolationFactor()
327 …UniformValues uniformValues(float currentZoom, const EvaluatedProperties& currentProperties) const… in uniformValues() argument
328 (void)currentZoom; // Workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56958 in uniformValues()
331 binders.template get<Ps>()->interpolationFactor(currentZoom) in uniformValues()