Clean codestyle issue and delete redundant files

Signed-off-by: shiyueeee <nieshiyue@huawei.com>
Change-Id: I09c6a7ccaf03493355fc6692a81747731626d6e4
This commit is contained in:
shiyueeee
2022-03-10 17:27:42 +08:00
parent 4b4d30c969
commit 5b88a14c63
11 changed files with 19 additions and 64 deletions
+2 -2
View File
@@ -337,8 +337,8 @@ bool AbstractScreenController::FillAbstractScreen(sptr<AbstractScreen>& absScree
sptr<SupportedScreenModes> info = new SupportedScreenModes();
info->width_ = static_cast<uint32_t>(rsScreenModeInfo.GetScreenWidth());
info->height_ = static_cast<uint32_t>(rsScreenModeInfo.GetScreenHeight());
info->refreshRate_ = rsScreenModeInfo.GetScreenFreshRate();
absScreen->modes_.emplace_back(info);
info->refreshRate_ = rsScreenModeInfo.GetScreenRefreshRate();
absScreen->modes_.push_back(info);
WLOGD("fill screen w/h:%{public}d/%{public}d", info->width_, info->height_);
}
int32_t activeModeId = rsInterface_.GetScreenActiveMode(rsScreenId).GetScreenModeId();