/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/ |
H A D | rs_animation_manager_test.cpp | 62 RSAnimationManager animationManager; in HWTEST_F() local 63 animationManager.AddAnimation(renderCurveAnimation); in HWTEST_F() 64 EXPECT_TRUE(animationManager.GetAnimation(ANIMATION_ID) == renderCurveAnimation); in HWTEST_F() 65 animationManager.AddAnimation(renderCurveAnimation); in HWTEST_F() 83 RSAnimationManager animationManager; in HWTEST_F() local 84 animationManager.AddAnimation(renderCurveAnimation); in HWTEST_F() 85 EXPECT_TRUE(animationManager.GetAnimation(ANIMATION_ID) == renderCurveAnimation); in HWTEST_F() 86 animationManager.RemoveAnimation(ANIMATION_ID); in HWTEST_F() 87 EXPECT_TRUE(animationManager.GetAnimation(ANIMATION_ID) == nullptr); in HWTEST_F() 99 RSAnimationManager animationManager; in HWTEST_F() local 119 RSAnimationManager animationManager; HWTEST_F() local 140 RSAnimationManager animationManager; HWTEST_F() local 156 RSAnimationManager animationManager; HWTEST_F() local 177 RSAnimationManager animationManager; HWTEST_F() local 208 RSAnimationManager animationManager; HWTEST_F() local 250 RSAnimationManager animationManager; HWTEST_F() local 288 RSAnimationManager animationManager; HWTEST_F() local 306 RSAnimationManager animationManager; HWTEST_F() local 324 RSAnimationManager animationManager; HWTEST_F() local 351 RSAnimationManager animationManager; HWTEST_F() local 378 RSAnimationManager animationManager; HWTEST_F() local [all...] |
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/fuzztest/rsanimationbase_fuzzer/ |
H A D | rsanimationbase_fuzzer.cpp | 139 auto animationManager = std::make_shared<RSAnimationManager>(); in RSAnimationManagerFuzzerTest() local 140 animationManager->RemoveAnimation(keyId); in RSAnimationManagerFuzzerTest() 141 animationManager->CancelAnimationByPropertyId(propertyId); in RSAnimationManagerFuzzerTest() 142 animationManager->GetAnimation(id); in RSAnimationManagerFuzzerTest() 143 animationManager->FilterAnimationByPid(pid); in RSAnimationManagerFuzzerTest() 144 animationManager->GetAnimationsSize(); in RSAnimationManagerFuzzerTest() 145 animationManager->GetAnimationPid(); in RSAnimationManagerFuzzerTest() 146 animationManager->Animate(time, nodeIsOnTheTree, abilityState); in RSAnimationManagerFuzzerTest() 147 animationManager->RegisterSpringAnimation(propertyId, animId); in RSAnimationManagerFuzzerTest() 148 animationManager in RSAnimationManagerFuzzerTest() [all...] |
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/command/ |
H A D | rs_node_showing_command.cpp | 91 auto& animationManager = node->GetAnimationManager(); in Process() local 92 animationManager.CancelAnimationByPropertyId(property_->GetId()); in Process()
|
H A D | rs_animation_command.cpp | 109 auto& animationManager = node->GetAnimationManager(); in CancelAnimation() local 110 animationManager.CancelAnimationByPropertyId(propertyId); in CancelAnimation()
|
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/EcsSerializer/include/ecs_serializer/ |
H A D | ecs_animation_util.h | 36 auto animationManager = GetManager<CORE3D_NS::IAnimationComponentManager>(ecs); in UpdateAnimationTrackTargets() local
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/ |
H A D | rs_profiler_dump.cpp | 519 void RSProfiler::DumpNodeAnimations(const RSAnimationManager& animationManager, JsonWriter& out) in DumpNodeAnimations() argument 521 if (animationManager.animations_.empty()) { in DumpNodeAnimations() 526 for (auto [id, animation] : animationManager.animations_) { in DumpNodeAnimations()
|
H A D | rs_profiler.h | 288 RSB_EXPORT static void DumpNodeAnimations(const RSAnimationManager& animationManager, JsonWriter& out);
|
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/ |
H A D | scene_util.cpp | 584 auto animationManager = GetManager<IAnimationComponentManager>(ecs); in RetargetSkinAnimation() local 585 animationManager->Create(dstAnimationEntity); in RetargetSkinAnimation() 586 auto dstAnimationComponent = animationManager->Write(dstAnimationEntity); in RetargetSkinAnimation() 587 auto srcAnimationComponent = animationManager->Read(animationEntity); in RetargetSkinAnimation()
|
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | asset_loader.cpp | 510 auto animationManager = GetManager<IAnimationComponentManager>(ecs_); in UpdateTrackTargets() local 514 if (const ScopedHandle<const AnimationComponent> animationData = animationManager->Read(animationEntity); in UpdateTrackTargets()
|
H A D | ecs_animation.cpp | 105 auto animationManager = GetManager<IAnimationComponentManager>(ecs); in UpdateTrackTargets() local 120 if (const ScopedHandle<const AnimationComponent> animationData = animationManager->Read(animationEntity); in UpdateTrackTargets()
|
/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/ |
H A D | gltf2_exporter.cpp | 835 auto const animationManager = GetManager<IAnimationComponentManager>(ecs); in ExportGltfAnimations() local 840 if (nodeSystem && animationSystem && animationManager && animationInputManager && animationOutputManager && in ExportGltfAnimations() 842 auto const animationCount = animationManager->GetComponentCount(); in ExportGltfAnimations() 848 if (auto nameHandle = nameManager->Read(animationManager->GetEntity(i)); nameHandle) { in ExportGltfAnimations() 856 if (const auto animationHandle = animationManager->Read(i); animationHandle) { in ExportGltfAnimations()
|
H A D | gltf2_importer.cpp | 2457 IAnimationComponentManager* animationManager; 2471 animationManager->Create(animationEntity); 2472 const auto animationHandle = animationManager->Write(animationEntity); 3416 auto animationManager = GetManager<IAnimationComponentManager>(*ecs_); 3430 const auto animationEntity = LookupResourceByUri(uri, uriManager_, *animationManager); 3448 task->import = AnimationTaskData { this, i, uri, name, animationManager, animationTrackManager,
|