Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dpaint_property_binder.hpp85 …ttributeBinding> attributeBinding(const PossiblyEvaluatedPropertyValue<T>& currentValue) const = 0;
87 virtual T uniformValue(const PossiblyEvaluatedPropertyValue<T>& currentValue) const = 0;
115 T uniformValue(const PossiblyEvaluatedPropertyValue<T>& currentValue) const override { in uniformValue()
116 return currentValue.constantOr(constant); in uniformValue()
151 …uteBinding> attributeBinding(const PossiblyEvaluatedPropertyValue<T>& currentValue) const override… in attributeBinding()
152 if (currentValue.isConstant()) { in attributeBinding()
163 T uniformValue(const PossiblyEvaluatedPropertyValue<T>& currentValue) const override { in uniformValue()
164 if (currentValue.isConstant()) { in uniformValue()
165 return *currentValue.constant(); in uniformValue()
212 …uteBinding> attributeBinding(const PossiblyEvaluatedPropertyValue<T>& currentValue) const override… in attributeBinding()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Dstate.hpp35 return dirty || currentValue != value; in operator !=()
40 currentValue = value; in setCurrentValue()
50 return currentValue; in getCurrentValue()
60 T::Set(currentValue, std::get<I>(params)...); in set()
64 typename T::Type currentValue = T::Default; member in mbgl::gl::State