Searched refs:FRACTION_MIN (Results 1 – 14 of 14) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/ |
H A D | rs_value_estimator.cpp | 68 return FRACTION_MIN; in EstimateFraction() 70 float start = FRACTION_MIN; in EstimateFraction() 88 return FRACTION_MIN; in EstimateFraction()
|
H A D | rs_render_interpolating_spring_animation.cpp | 153 return FRACTION_MIN; in CalculateTimeFraction() 156 float lastFraction = FRACTION_MIN; in CalculateTimeFraction() 167 return FRACTION_MIN; in CalculateTimeFraction()
|
H A D | rs_render_path_animation.cpp | 72 if (fraction < FRACTION_MIN || fraction > FRACTION_MAX || fraction > endFraction_) { in SetBeginFraction() 92 if (fraction < FRACTION_MIN || fraction > FRACTION_MAX || fraction < beginFraction_) { in SetEndFraction()
|
H A D | rs_render_keyframe_animation.cpp | 41 if (fraction < FRACTION_MIN || fraction > FRACTION_MAX) { in AddKeyframe()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/ |
H A D | rs_keyframe_animation_test.cpp | 53 keyframeAnimation->AddKeyFrame(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_OUT); 88 keyframeAnimation->AddKeyFrame(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_OUT); 128 …keyframeAnimation->AddKeyFrame(FRACTION_MIN - 0.1f, startProperty, RSAnimationTimingCurve::EASE_OU… 167 …keyframes.push_back(std::make_tuple(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_IN)); 207 …keyframes.push_back(std::make_tuple(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_IN)); 248 …keyframes.push_back(std::make_tuple(FRACTION_MIN - 0.1f, startProperty, RSAnimationTimingCurve::EA… 336 …keyframes.push_back(std::make_tuple(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_IN)); 375 …keyframes.push_back(std::make_tuple(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_IN));
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/ |
H A D | rs_keyframe_animation.cpp | 36 if (fraction < FRACTION_MIN || fraction > FRACTION_MAX) { in AddKeyFrame() 98 if (std::abs(std::get<FRACTION_INDEX>(beginKeyframe) - FRACTION_MIN) > EPSILON) { in InitInterpolationValue() 99 …keyframes_.insert(keyframes_.begin(), { FRACTION_MIN, GetOriginValue(), RSAnimationTimingCurve::LI… in InitInterpolationValue()
|
H A D | rs_motion_path_option.h | 80 float beginFraction_ { FRACTION_MIN };
|
H A D | rs_path_animation.h | 104 float beginFraction_ { FRACTION_MIN };
|
H A D | rs_path_animation.cpp | 78 if (fraction < FRACTION_MIN || fraction > FRACTION_MAX || fraction > endFraction_) { in SetBeginFraction() 98 if (fraction < FRACTION_MIN || fraction > FRACTION_MAX || fraction < beginFraction_) { in SetEndFraction()
|
H A D | rs_animation.cpp | 450 if (fraction < FRACTION_MIN || fraction > FRACTION_MAX) { in SetFraction()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/ |
H A D | rs_animation_common.h | 23 static constexpr float FRACTION_MIN = 0.0f; variable
|
H A D | rs_value_estimator.h | 132 return FRACTION_MIN; in EstimateFraction() 136 return FRACTION_MIN; in EstimateFraction() 139 float lastFraction = FRACTION_MIN; in EstimateFraction() 149 return FRACTION_MIN; in EstimateFraction()
|
H A D | rs_render_path_animation.h | 93 float beginFraction_ { FRACTION_MIN };
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/ |
H A D | rs_value_estimator_test.cpp | 94 EXPECT_FLOAT_EQ(result, FRACTION_MIN);
|