/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/command/ |
H A D | rs_node_command.h | 168 NodeId, bool, PropertyId, PropertyUpdateType)) 171 NodeId, float, PropertyId, PropertyUpdateType)) 174 NodeId, int, PropertyId, PropertyUpdateType)) 177 NodeId, Color, PropertyId, PropertyUpdateType)) 180 NodeId, Gravity, PropertyId, PropertyUpdateType)) 183 NodeId, Matrix3f, PropertyId, PropertyUpdateType)) 186 NodeId, Quaternion, PropertyId, PropertyUpdateType)) 210 NodeId, RSFlyOutPara, PropertyId, PropertyUpdateType)) 236 NodeId, Vector2f, PropertyId, PropertyUpdateType)) 245 NodeId, Vector4f, PropertyId, PropertyUpdateType)) [all …]
|
H A D | rs_animation_command.h | 125 static void CancelAnimation(RSContext& context, NodeId targetId, PropertyId propertyId); 158 ARG(ANIMATION, ANIMATION_CANCEL, AnimationCommandHelper::CancelAnimation, NodeId, PropertyId))
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/ |
H A D | rs_animation_manager.h | 50 void CancelAnimationByPropertyId(PropertyId id); 60 void RegisterSpringAnimation(PropertyId propertyId, AnimationId animId); 61 void UnregisterSpringAnimation(PropertyId propertyId, AnimationId animId); 64 void RegisterPathAnimation(PropertyId propertyId, AnimationId animId); 65 void UnregisterPathAnimation(PropertyId propertyId, AnimationId animId); 68 void RegisterParticleAnimation(PropertyId propertyId, AnimationId animId); 69 void UnregisterParticleAnimation(PropertyId propertyId, AnimationId animId); 70 const std::unordered_map<PropertyId, AnimationId>& GetParticleAnimations(); 83 std::unordered_map<PropertyId, AnimationId> springAnimations_; 84 std::unordered_map<PropertyId, AnimationId> pathAnimations_; [all …]
|
H A D | rs_render_property_animation.h | 34 PropertyId GetPropertyId() const override; 43 RSRenderPropertyAnimation(AnimationId id, const PropertyId& propertyId, 45 RSRenderPropertyAnimation(AnimationId id, const PropertyId& propertyId) : RSRenderAnimation(id) in RSRenderPropertyAnimation() 76 PropertyId propertyId_;
|
H A D | rs_render_path_animation.h | 30 RSRenderPathAnimation(AnimationId id, const PropertyId& propertyId, 60 void SetRotationId(const PropertyId id); 97 PropertyId rotationId_ {};
|
H A D | rs_animation_rate_decider.h | 40 void AddDecisionElement(PropertyId id, const PropertyValue& velocity, FrameRateRange range); 53 std::unordered_map<PropertyId, std::pair<PropertyValue, FrameRateRange>> decisionElements_;
|
H A D | rs_render_particle_animation.h | 32 RSRenderParticleAnimation(AnimationId id, const PropertyId& propertyId,
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/animation/ |
H A D | rs_animation_manager_test.cpp | 94 PropertyId id = 0; 229 PropertyId propertyId = 0; 243 PropertyId propertyId = 0; 257 PropertyId propertyId = 0; 271 PropertyId propertyId = 0; 285 PropertyId propertyId = 0; 299 PropertyId propertyId = 0; 313 PropertyId propertyId = 0; 327 PropertyId propertyId = 0;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/ |
H A D | rs_animation_manager.cpp | 85 void RSAnimationManager::CancelAnimationByPropertyId(PropertyId id) in CancelAnimationByPropertyId() 238 void RSAnimationManager::RegisterSpringAnimation(PropertyId propertyId, AnimationId animId) in RegisterSpringAnimation() 243 void RSAnimationManager::UnregisterSpringAnimation(PropertyId propertyId, AnimationId animId) in UnregisterSpringAnimation() 251 std::shared_ptr<RSRenderAnimation> RSAnimationManager::QuerySpringAnimation(PropertyId propertyId) in QuerySpringAnimation() 260 void RSAnimationManager::RegisterPathAnimation(PropertyId propertyId, AnimationId animId) in RegisterPathAnimation() 265 void RSAnimationManager::UnregisterPathAnimation(PropertyId propertyId, AnimationId animId) in UnregisterPathAnimation() 273 std::shared_ptr<RSRenderAnimation> RSAnimationManager::QueryPathAnimation(PropertyId propertyId) in QueryPathAnimation() 282 void RSAnimationManager::RegisterParticleAnimation(PropertyId propertyId, AnimationId animId) in RegisterParticleAnimation() 287 void RSAnimationManager::UnregisterParticleAnimation(PropertyId propertyId, AnimationId animId) in UnregisterParticleAnimation() 295 const std::unordered_map<PropertyId, AnimationId>& RSAnimationManager::GetParticleAnimations() in GetParticleAnimations()
|
H A D | rs_render_property_animation.cpp | 26 RSRenderPropertyAnimation::RSRenderPropertyAnimation(AnimationId id, const PropertyId& propertyId, in RSRenderPropertyAnimation() 36 PropertyId RSRenderPropertyAnimation::GetPropertyId() const in GetPropertyId()
|
H A D | rs_render_transition_effect.cpp | 38 PropertyId GenerateTransitionPropertyId() in GenerateTransitionPropertyId() 50 return ((PropertyId)pid_ << PID_SHIFT) | currentId; in GenerateTransitionPropertyId()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/modifier/ |
H A D | rs_modifier_manager.h | 50 void RegisterSpringAnimation(PropertyId propertyId, AnimationId animId); 51 void UnregisterSpringAnimation(PropertyId propertyId, AnimationId animId); 52 std::shared_ptr<RSRenderAnimation> QuerySpringAnimation(PropertyId propertyId); 65 std::unordered_map<PropertyId, AnimationId> springAnimations_;
|
H A D | rs_modifier_manager.cpp | 172 void RSModifierManager::RegisterSpringAnimation(PropertyId propertyId, AnimationId animId) in RegisterSpringAnimation() 177 void RSModifierManager::UnregisterSpringAnimation(PropertyId propertyId, AnimationId animId) in UnregisterSpringAnimation() 185 std::shared_ptr<RSRenderAnimation> RSModifierManager::QuerySpringAnimation(PropertyId propertyId) in QuerySpringAnimation()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/modifier/ |
H A D | rs_render_property.h | 43 RSRenderPropertyBase(const PropertyId& id) : id_(id) {} in RSRenderPropertyBase() 50 PropertyId GetId() const in GetId() 120 PropertyId id_; 180 …RSRenderProperty(const T& value, const PropertyId& id) : RSRenderPropertyBase(id), stagingValue_(v… in RSRenderProperty() 181 RSRenderProperty(const T& value, const PropertyId& id, const RSRenderPropertyType type) in RSRenderProperty() 234 …RSRenderAnimatableProperty(const T& value, const PropertyId& id) : RSRenderProperty<T>(value, id) … in RSRenderAnimatableProperty() 235 … RSRenderAnimatableProperty(const T& value, const PropertyId& id, const RSRenderPropertyType type) in RSRenderAnimatableProperty() 238 RSRenderAnimatableProperty(const T& value, const PropertyId& id, in RSRenderAnimatableProperty()
|
H A D | rs_render_modifier.h | 59 virtual PropertyId GetPropertyId() = 0; 105 PropertyId GetPropertyId() override in GetPropertyId() 140 PropertyId GetPropertyId() override in GetPropertyId() 194 PropertyId GetPropertyId() override in GetPropertyId()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/command/ |
H A D | rs_node_showing_command_test.cpp | 119 PropertyId id = 0; 205 PropertyId propertyId = 0; 208 …std::pair<std::pair<NodeId, PropertyId>, std::pair<std::shared_ptr<RSRenderPropertyBase>, std::vec… 215 PropertyId id = 0; 225 …std::pair<std::pair<NodeId, PropertyId>, std::pair<std::shared_ptr<RSRenderPropertyBase>, std::vec…
|
H A D | rs_node_command_test.cpp | 47 PropertyId propertyId = static_cast<PropertyId>(1); 148 PropertyId propertyId = 0;
|
H A D | rs_animation_command_test.cpp | 123 PropertyId id = 0; 170 PropertyId propertyId = 1;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/ |
H A D | rs_node.h | 522 std::vector<PropertyId> GetModifierIds() const; 561 bool HasPropertyAnimation(const PropertyId& id); 562 std::vector<AnimationId> GetAnimationByPropertyId(const PropertyId& id); 565 void FinishAnimationByProperty(const PropertyId& id); 567 void CancelAnimationByProperty(const PropertyId& id, const bool needForceSync = false); 568 const std::shared_ptr<RSModifier> GetModifier(const PropertyId& propertyId); 602 std::map<PropertyId, std::shared_ptr<RSModifier>> modifiers_; 609 std::unordered_map<PropertyId, uint32_t> animatingPropertyNum_;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsextendedmodifier_fuzzer/ |
H A D | rsextendedmodifier_fuzzer.cpp | 90 PropertyId propertyId = GetData<PropertyId>(); in DoCreateRenderModifier()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/ |
H A D | rs_path_animation.h | 73 PropertyId GetRotationPropertyId(const std::shared_ptr<RSNode>& node); 110 PropertyId rotationId_ {};
|
H A D | rs_animation_group.h | 46 PropertyId GetPropertyId() const override;
|
H A D | rs_property_animation.h | 48 PropertyId GetPropertyId() const override;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/fuzztest/rsanimationbase_fuzzer/ |
H A D | rsanimationbase_fuzzer.cpp | 111 PropertyId propertyId = GetData<PropertyId>(); in RSAnimationManagerFuzzerTest()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/ |
H A D | rs_base_render_node_test.cpp | 310 PropertyId id = 1; 385 PropertyId id = 1; 504 PropertyId id = 1; 649 PropertyId id = 1; 1053 PropertyId id = 1; 1410 PropertyId id = 1; 1431 PropertyId id = 1; 1450 PropertyId id = 1;
|