Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_render_spring_animation.cpp196 blendDuration_ = 0; in InheritSpringAnimation()
210 blendDuration_ = 0; in InheritSpringAnimation()
220 blendDuration_ = 0; in InheritSpringAnimation()
225 blendDuration_ = 0; in InheritSpringAnimation()
226 } else if (blendDuration_ == 0) { in InheritSpringAnimation()
231 blendDuration_ = prevSpringAnimation->blendDuration_; in InheritSpringAnimation()
258 if (blendDuration_) { in OnInitialize()
268 if (blendTime < blendDuration_) { in OnInitialize()
273 blendDuration_ -= blendTime; in OnInitialize()
277 blendDuration_ = 0; in OnInitialize()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dcurve.h288 : response_(response), dampingRatio_(dampingRatio), blendDuration_(blendDuration)
302 comma + std::to_string(blendDuration_) + std::string(")")); in ToString()
312 NearEqual(other->GetBlendDuration(), blendDuration_); in IsEqual()
324 return blendDuration_; in GetBlendDuration()
336 float blendDuration_; variable
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_render_spring_animation.h73 uint64_t blendDuration_ = 0; variable
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_animation_timing_curve.h80 float blendDuration_ { 0.0f };
H A Drs_spring_animation.cpp79 …tSpringParameters(timingCurve_.response_, timingCurve_.dampingRatio_, timingCurve_.blendDuration_); in OnStart()
H A Drs_animation_timing_curve.cpp62 …: type_(CurveType::SPRING), response_(response), dampingRatio_(dampingRatio), blendDuration_(blend… in RSAnimationTimingCurve()