diff options
author | qctecmdr <qctecmdr@localhost> | 2020-06-10 23:42:29 -0700 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-06-10 23:42:28 -0700 |
commit | 779f8334a4a9ebdd9b7d7f52ebd0e878b87fa2ac (patch) | |
tree | 5c4ce0fc9d43ab20e84c224eccfc4e2386ce7710 /sdm/libs/hwc2/hwc_session.cpp | |
parent | 65bf70c6b098da04099e21c1a8ea7dfd3a050fc2 (diff) | |
parent | 2fb0851edbf244288b69b731521f64a99b29b3f5 (diff) |
Merge "composer: fix the signature to getDebugProperty/getSupportedDsiBitClks"
Diffstat (limited to 'sdm/libs/hwc2/hwc_session.cpp')
-rw-r--r-- | sdm/libs/hwc2/hwc_session.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sdm/libs/hwc2/hwc_session.cpp b/sdm/libs/hwc2/hwc_session.cpp index 94fac19b..f79ae244 100644 --- a/sdm/libs/hwc2/hwc_session.cpp +++ b/sdm/libs/hwc2/hwc_session.cpp @@ -1446,7 +1446,7 @@ android::status_t HWCSession::notifyCallback(uint32_t command, const android::Pa DLOGE("QService command = %d: input_parcel needed.", command); break; } - status = setIdleTimeout(UINT32(input_parcel->readInt32())); + status = SetIdleTimeout(UINT32(input_parcel->readInt32())); break; case qService::IQService::SET_FRAME_DUMP_CONFIG: @@ -1481,7 +1481,7 @@ android::status_t HWCSession::notifyCallback(uint32_t command, const android::Pa int disp_id = INT(input_parcel->readInt32()); HWCDisplay::DisplayStatus disp_status = static_cast<HWCDisplay::DisplayStatus>(input_parcel->readInt32()); - status = SetSecondaryDisplayStatus(disp_id, disp_status); + status = SetDisplayStatus(disp_id, disp_status); output_parcel->writeInt32(status); } break; @@ -1504,7 +1504,7 @@ android::status_t HWCSession::notifyCallback(uint32_t command, const android::Pa break; } int32_t input = input_parcel->readInt32(); - status = toggleScreenUpdate(input == 1); + status = ToggleScreenUpdate(input == 1); output_parcel->writeInt32(status); } break; @@ -1630,7 +1630,7 @@ android::status_t HWCSession::notifyCallback(uint32_t command, const android::Pa break; } uint32_t camera_status = UINT32(input_parcel->readInt32()); - status = setCameraLaunchStatus(camera_status); + status = SetCameraLaunchStatus(camera_status); } break; @@ -3448,7 +3448,7 @@ android::status_t HWCSession::SetIdlePC(const android::Parcel *input_parcel) { auto enable = input_parcel->readInt32(); auto synchronous = input_parcel->readInt32(); - return static_cast<android::status_t>(controlIdlePowerCollapse(enable, synchronous)); + return static_cast<android::status_t>(ControlIdlePowerCollapse(enable, synchronous)); } hwc2_display_t HWCSession::GetActiveBuiltinDisplay() { |