Home
last modified time | relevance | path

Searched refs:RSSpringModel (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_spring_model_test.cpp53 …auto model1 = std::make_shared<RSSpringModel<float>>(0.0f, 0.0f, initialOffset, initialVelocity, 0…
59 …auto model2 = std::make_shared<RSSpringModel<float>>(1.0f, 1.0f, initialOffset, initialVelocity, 1…
65 …auto model3 = std::make_shared<RSSpringModel<float>>(1.0f, 2.0f, initialOffset, initialVelocity, 1…
71 auto model4 = std::make_shared<RSSpringModel<float>>();
89 …auto model1 = std::make_shared<RSSpringModel<Color>>(0.0f, 0.0f, initialOffset, initialVelocity, 0…
95 …auto model2 = std::make_shared<RSSpringModel<Color>>(1.0f, 1.0f, initialOffset, initialVelocity, 1…
101 …auto model3 = std::make_shared<RSSpringModel<Color>>(1.0f, 2.0f, initialOffset, initialVelocity, 1…
326 auto model1 = std::make_shared<RSSpringModel<std::shared_ptr<RSRenderPropertyBase>>>(0.0f, 0.0f,
333 auto model2 = std::make_shared<RSSpringModel<std::shared_ptr<RSRenderPropertyBase>>>(1.0f, 1.0f,
340 auto model3 = std::make_shared<RSSpringModel<std::shared_ptr<RSRenderPropertyBase>>>(1.0f, 2.0f,
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_spring_model.h61 class RSB_EXPORT RSSpringModel {
63 RSSpringModel() {}; in RSSpringModel() function
73 ~RSSpringModel() {}; in ~RSSpringModel()
220 template class RSSpringModel<Vector2f>;
221 template class RSSpringModel<Vector4f>;
222 template class RSSpringModel<Quaternion>;
226 RSB_EXPORT float RSSpringModel<float>::EstimateDuration() const;
228 float RSSpringModel<std::shared_ptr<RSRenderPropertyBase>>::EstimateDuration() const;
232 RSB_EXPORT float RSSpringModel<float>::EstimateDurationForUnderDampedModel() const;
234 RSB_EXPORT float RSSpringModel<float>::EstimateDurationForCriticalDampedModel() const;
[all …]
H A Drs_spring_interpolator.h25 class RSB_EXPORT RSSpringInterpolator : public RSSpringModel<float>, public RSInterpolator {
H A Drs_render_interpolating_spring_animation.h25 …enderInterpolatingSpringAnimation : public RSRenderPropertyAnimation, public RSSpringModel<float> {
H A Drs_value_estimator.h358 springModel_ = std::make_shared<RSSpringModel<T>>(); in InitSpringModel()
495 std::shared_ptr<RSSpringModel<T>> springModel_;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_spring_model.cpp151 float RSSpringModel<float>::EstimateDuration() const in EstimateDuration()
198 float RSSpringModel<float>::EstimateDurationForUnderDampedModel() const in EstimateDurationForUnderDampedModel()
231 float RSSpringModel<float>::EstimateDurationForCriticalDampedModel() const in EstimateDurationForCriticalDampedModel()
267 float RSSpringModel<float>::EstimateDurationForOverDampedModel() const in EstimateDurationForOverDampedModel()
318 template class RSSpringModel<float>; variable
319 template class RSSpringModel<Color>; variable
320 template class RSSpringModel<Matrix3f>; variable
321 template class RSSpringModel<RRect>; variable
322 template class RSSpringModel<Vector4<Color>>;
323 template class RSSpringModel<std::shared_ptr<RSFilter>>;
[all …]
H A Drs_spring_interpolator.cpp28 : RSSpringModel<float>(response, dampingRatio, -1, initialVelocity, 0.0001) in RSSpringInterpolator()
35 : RSSpringModel<float>(response, dampingRatio, -1, initialVelocity, 0.0001), RSInterpolator(id) in RSSpringInterpolator()
H A Drs_render_interpolating_spring_animation.cpp35 …: RSRenderPropertyAnimation(id, propertyId, originValue), RSSpringModel<float>(), startValue_(star… in RSRenderInterpolatingSpringAnimation()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsspringmodel_fuzzer/
H A Drsspringmodel_fuzzer.cpp71 auto model1 = std::make_shared<RSSpringModel<float>>( in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/modifier/
H A Drs_render_property.h171 friend class RSSpringModel; variable