Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_interpolator.h33 enum InterpolatorType : uint16_t { enum
50 virtual InterpolatorType GetType() = 0;
72 InterpolatorType GetType() override { return InterpolatorType::LINEAR; } in GetType()
89 InterpolatorType GetType() override { return InterpolatorType::CUSTOM; } in GetType()
H A Drs_spring_interpolator.h35 InterpolatorType GetType() override { return InterpolatorType::SPRING; } in GetType()
H A Drs_cubic_bezier_interpolator.h36 InterpolatorType GetType() override { return InterpolatorType::CUBIC_BEZIER; } in GetType()
H A Drs_steps_interpolator.h38 InterpolatorType GetType() override { return InterpolatorType::STEPS; } in GetType()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_interpolator.cpp78 case InterpolatorType::LINEAR: in Unmarshalling()
81 case InterpolatorType::CUSTOM: in Unmarshalling()
84 case InterpolatorType::CUBIC_BEZIER: in Unmarshalling()
87 case InterpolatorType::SPRING: in Unmarshalling()
90 case InterpolatorType::STEPS: in Unmarshalling()
135 if (!parcel.WriteUint16(InterpolatorType::LINEAR)) { in Marshalling()
167 if (!parcel.WriteUint16(InterpolatorType::CUSTOM)) { in Marshalling()
H A Drs_spring_interpolator.cpp42 if (!parcel.WriteUint16(InterpolatorType::SPRING)) { in Marshalling()
H A Drs_steps_interpolator.cpp35 if (!parcel.WriteUint16(InterpolatorType::STEPS)) { in Marshalling()
H A Drs_cubic_bezier_interpolator.cpp55 if (!parcel.WriteUint16(InterpolatorType::CUBIC_BEZIER)) { in Marshalling()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_interpolator_test.cpp60 parcel3.WriteUint16(InterpolatorType::STEPS);
95 parcel4.WriteUint16(InterpolatorType::SPRING);
194 parcel1.WriteUint16(InterpolatorType::LINEAR);
199 parcel2.WriteUint16(InterpolatorType::CUSTOM);
204 parcel3.WriteUint16(InterpolatorType::CUBIC_BEZIER);
209 parcel4.WriteUint16(InterpolatorType::SPRING);
214 parcel5.WriteUint16(InterpolatorType::STEPS);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_curve_animation.cpp100 …if (interpolator->GetType() == InterpolatorType::CUSTOM || interpolator->GetType() == Interpolator… in IsSupportInteractiveAnimator()