summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-03 00:22:18 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-03 00:22:18 +0000
commitf371e9fa991bfc18d7a85a95f6a6b5d90626466b (patch)
tree4ab814ec70b99dc560bce70afb946c99380b9cd2
parentef50b0c96890157678ee0ff16faee10fed5f224b (diff)
parent66abbbebef7f702ca16f4b9263513b782eb78ebf (diff)
downloadgs101-android13-qpr3-s2-release.tar.gz
Change-Id: Ie804f1ec8b453305fdfaf1f854fbe3730838b9d4
-rw-r--r--libhwc2.1/libmaindisplay/ExynosPrimaryDisplayModule.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libhwc2.1/libmaindisplay/ExynosPrimaryDisplayModule.cpp b/libhwc2.1/libmaindisplay/ExynosPrimaryDisplayModule.cpp
index 5aee49d..d3b5810 100644
--- a/libhwc2.1/libmaindisplay/ExynosPrimaryDisplayModule.cpp
+++ b/libhwc2.1/libmaindisplay/ExynosPrimaryDisplayModule.cpp
@@ -1037,7 +1037,7 @@ void ExynosPrimaryDisplayModule::setLbeState(LbeState state) {
if (mCurrentLbeState != state) {
mCurrentLbeState = state;
- mDevice->onRefresh();
+ mDevice->onRefresh(mDisplayId);
}
ALOGI("Lbe state %hhd", mCurrentLbeState);
}
@@ -1065,7 +1065,7 @@ void ExynosPrimaryDisplayModule::setLbeAmbientLight(int value) {
if (mAtcLuxMapIndex != index) {
mAtcLuxMapIndex = index;
- mDevice->onRefresh();
+ mDevice->onRefresh(mDisplayId);
}
mCurrentLux = value;
}
@@ -1150,7 +1150,7 @@ void ExynosPrimaryDisplayModule::checkAtcAnimation() {
ALOGI("atc enable is off (pending off=false)");
}
- mDevice->onRefresh();
+ mDevice->onRefresh(mDisplayId);
}
int32_t ExynosPrimaryDisplayModule::setPowerMode(int32_t mode) {