Home
last modified time | relevance | path

Searched refs:renderAnimation (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_render_animation_test.cpp77 renderAnimation->Pause();
78 EXPECT_TRUE(renderAnimation != nullptr);
91 renderAnimation->Resume();
92 EXPECT_TRUE(renderAnimation != nullptr);
106 EXPECT_TRUE(renderAnimation != nullptr);
133 renderAnimation->SetReversed(true);
134 renderAnimation->Start();
135 renderAnimation->SetReversed(true);
136 EXPECT_TRUE(renderAnimation != nullptr);
153 EXPECT_TRUE(renderAnimation != nullptr);
[all …]
H A Drs_render_interpolating_spring_animation_test.cpp119 auto renderAnimation = RSRenderInterpolatingSpringAnimation::Unmarshalling(parcel); variable
120 EXPECT_TRUE(renderAnimation == nullptr);
122 renderAnimation = RSRenderInterpolatingSpringAnimation::Unmarshalling(parcel);
123 EXPECT_TRUE(renderAnimation != nullptr);
H A Drs_render_path_animation_test.cpp302 auto renderAnimation = RSRenderPathAnimation::Unmarshalling(parcel); variable
303 EXPECT_TRUE(renderAnimation == nullptr);
305 renderAnimation = RSRenderPathAnimation::Unmarshalling(parcel);
306 EXPECT_TRUE(renderAnimation != nullptr);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/
H A Drs_render_display_sync.cpp35 RSRenderDisplaySync::RSRenderDisplaySync(std::weak_ptr<RSRenderAnimation> renderAnimation) in RSRenderDisplaySync() argument
36 : renderAnimation_(renderAnimation) {} in RSRenderDisplaySync()
40 auto renderAnimation = renderAnimation_.lock(); in GetId() local
41 if (renderAnimation) { in GetId()
42 return renderAnimation->GetAnimationId(); in GetId()
50 auto renderAnimation = renderAnimation_.lock(); in SetExpectedFrameRateRange() local
51 if (renderAnimation) { in SetExpectedFrameRateRange()
52 renderAnimation->SetFrameRateRange(range); in SetExpectedFrameRateRange()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_render_display_sync.h30 explicit RSRenderDisplaySync(std::weak_ptr<RSRenderAnimation> renderAnimation);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/
H A Drs_animation_supplement_test.cpp263 auto renderAnimation = std::make_shared<RSRenderAnimationMock>(animation->GetId()); variable
269 animation->StartCustomAnimation(renderAnimation);
277 animation->StartCustomAnimation(renderAnimation);
477 auto renderAnimation = std::make_shared<RSRenderAnimationMock>(animation->GetId()); variable
480 modifierManager->AddAnimation(renderAnimation);
484 modifierManager->AddAnimation(renderAnimation);
485 modifierManager->AddAnimation(renderAnimation);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/property/
H A Drs_properties_test2.cpp467 …std::shared_ptr<RSRenderAnimation> renderAnimation = std::make_shared<RSRenderParticleAnimation>(); variable
468 renderNode->animationManager_.animations_.insert({ animationId, renderAnimation });