/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/frame_rate/ |
H A D | frame_rate_manager.cpp | 77 int32_t rateType = 0; in GetExpectedRate() local 82 rateType = ACE_COMPONENT_FRAME_RATE_TYPE; in GetExpectedRate() 86 rateType = DISPLAY_SYNC_FRAME_RATE_TYPE; in GetExpectedRate() 90 rateType = UI_ANIMATION_FRAME_RATE_TYPE; in GetExpectedRate() 94 rateType = UI_ANIMATION_FRAME_RATE_TYPE; in GetExpectedRate() 96 rateType |= ANIMATION_STATE_FIRST_FRAME; in GetExpectedRate() 98 return {expectedRate, rateType}; in GetExpectedRate()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | form_render_window.cpp | 186 void FormRenderWindow::FlushFrameRate(int32_t rate, int32_t animatorExpectedFrameRate, int32_t rateType) in FlushFrameRate() argument 192 decltype(frameRateData_) frameRateData{rate, animatorExpectedFrameRate, rateType}; in FlushFrameRate() 195 frameRateLinker_->UpdateFrameRateRange({0, RANGE_MAX_REFRESHRATE, rate, rateType}, animatorExpectedFrameRate); in FlushFrameRate()
|
H A D | form_render_window.h | 46 void FlushFrameRate(int32_t rate, int32_t animatorExpectedFrameRate, int32_t rateType) override;
|
H A D | rosen_window.h | 56 void FlushFrameRate(int32_t rate, int32_t animatorExpectedFrameRate, int32_t rateType) override;
|
H A D | rosen_window.cpp | 106 void RosenWindow::FlushFrameRate(int32_t rate, int32_t animatorExpectedFrameRate, int32_t rateType) in FlushFrameRate() argument 111 rsWindow_->FlushFrameRate(rate, animatorExpectedFrameRate, rateType); in FlushFrameRate()
|
/foundation/window/window_manager/wm/src/ |
H A D | screen_scene.cpp | 136 void ScreenScene::FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType)
in FlushFrameRate() argument 138 vsyncStation_->FlushFrameRate(rate, animatorExpectedFrameRate, rateType);
in FlushFrameRate()
|
H A D | vsync_station.cpp | 219 void VsyncStation::FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType) in FlushFrameRate() argument 224 FrameRateRange range = {0, RANGE_MAX_REFRESHRATE, rate, rateType}; in FlushFrameRate()
|
H A D | root_scene.cpp | 182 void RootScene::FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType) in FlushFrameRate() argument 184 vsyncStation_->FlushFrameRate(rate, animatorExpectedFrameRate, rateType); in FlushFrameRate()
|
H A D | window_session_impl.cpp | 3600 void WindowSessionImpl::FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType) in FlushFrameRate() argument 3606 vsyncStation_->FlushFrameRate(rate, animatorExpectedFrameRate, rateType); in FlushFrameRate()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/ui_extension/mock/ |
H A D | mock_rosen_window.cpp | 24 void RosenWindow::FlushFrameRate(int32_t rate, int32_t animatorExpectedFrameRate, int32_t rateType) {} in FlushFrameRate() argument
|
/foundation/window/window_manager/wm/include/ |
H A D | screen_scene.h | 47 void FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType = 0) override;
|
H A D | vsync_station.h | 45 void FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType = 0);
|
H A D | root_scene.h | 53 void FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType = 0) override;
|
H A D | window_session_impl.h | 136 void FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType = 0) override;
|
/foundation/window/window_manager/previewer/include/ |
H A D | window.h | 213 virtual void FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType) {} in FlushFrameRate() argument
|
/foundation/window/window_manager/interfaces/innerkits/wm/ |
H A D | window.h | 1166 * @param rateType frame rate type. 1168 virtual void FlushFrameRate(uint32_t rate, int32_t animatorExpectedFrameRate, uint32_t rateType) {} in FlushFrameRate() argument
|
/foundation/window/window_manager/wm/test/unittest/ |
H A D | window_test.cpp | 2372 uint32_t rateType = 0;
in HWTEST_F() local 2374 window->FlushFrameRate(rate, animatorExpectedFrameRate, rateType);
in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/ |
H A D | pipeline_context.cpp | 1290 auto [rate, rateType] = frameRateManager_->GetExpectedRate(); in FlushFrameRate() 1293 rate, rateType, currAnimatorExpectedFrameRate, lastAnimatorExpectedFrameRate_); in FlushFrameRate() 1296 rate, rateType, currAnimatorExpectedFrameRate, lastAnimatorExpectedFrameRate_); in FlushFrameRate() 1297 window_->FlushFrameRate(rate, currAnimatorExpectedFrameRate, rateType); in FlushFrameRate()
|