Home
last modified time | relevance | path

Searched refs:animationScale_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_animation_fraction.cpp37 std::atomic<float> RSAnimationFraction::animationScale_ = 1.0f; member in OHOS::Rosen::RSAnimationFraction
56 return animationScale_.load(std::memory_order_relaxed); in GetAnimationScale()
61 animationScale_.store(std::max(0.0f, animationScale), std::memory_order_relaxed); in SetAnimationScale()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dsystem_properties.cpp65 float animationScale_ = DEFAULT_ANIMATION_SCALE; variable
256 animationScale_ = DEFAULT_ANIMATION_SCALE; in OnAnimationScaleChanged()
264 LOGI("AnimationScale: %{public}f -> %{public}f", animationScale_, animationScale); in OnAnimationScaleChanged()
265 animationScale_ = animationScale; in OnAnimationScaleChanged()
584 animationScale_ = std::atof(system::GetParameter(ANIMATION_SCALE_KEY, "1").c_str()); in InitDeviceInfo()
659 return animationScale_; in GetAnimationScale()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_animation_fraction.h73 static std::atomic<float> animationScale_; variable