1 /* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef RENDER_SERVICE_DRAWABLE_DFX_RS_REFRESH_RATE_DFX_H 17 #define RENDER_SERVICE_DRAWABLE_DFX_RS_REFRESH_RATE_DFX_H 18 19 #include <string> 20 21 #include "system/rs_system_parameters.h" 22 #include "drawable/rs_logical_display_render_node_drawable.h" 23 #include "params/rs_logical_display_render_params.h" 24 25 namespace OHOS::Rosen { 26 class RSRefreshRateDfx { 27 public: RSRefreshRateDfx(DrawableV2::RSLogicalDisplayRenderNodeDrawable & targetDrawable)28 explicit RSRefreshRateDfx(DrawableV2::RSLogicalDisplayRenderNodeDrawable& targetDrawable) 29 : logicalDisplayDrawable_(targetDrawable), logicalDisplayParams_(targetDrawable.GetRenderParams()) 30 {} 31 ~RSRefreshRateDfx() = default; 32 33 void OnDraw(RSPaintFilterCanvas& canvas); 34 35 private: 36 bool RefreshRateRotationProcess(RSPaintFilterCanvas& canvas, 37 ScreenRotation rotation, float translateWidth, float translateHeight); 38 39 const DrawableV2::RSLogicalDisplayRenderNodeDrawable& logicalDisplayDrawable_; 40 const std::unique_ptr<RSRenderParams>& logicalDisplayParams_; 41 }; 42 } // namespace OHOS::Rosen 43 #endif // RENDER_SERVICE_DRAWABLE_DFX_RS_REFRESH_RATE_DFX_H 44