summaryrefslogtreecommitdiff
path: root/libs/gui/LayerState.cpp
diff options
context:
space:
mode:
author Melody Hsu <melodymhsu@google.com> 2023-11-28 06:17:14 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-11-28 06:17:14 +0000
commite4f3be74968d2e730b67df373ae31ca8e7b0a410 (patch)
tree8e5c37b524f1852f90dc93d013558452c0085a6c /libs/gui/LayerState.cpp
parent791b234ccf11e7ee347eb8f881baff88cfc4fc63 (diff)
parent70a63e5f65891c9d22d1a554ed4bda11b16f48ba (diff)
Merge "Remove useIdentityTransform from DisplayCaptureArgs." into main
Diffstat (limited to 'libs/gui/LayerState.cpp')
-rw-r--r--libs/gui/LayerState.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/gui/LayerState.cpp b/libs/gui/LayerState.cpp
index 97a82be5f5..38fab9cdaa 100644
--- a/libs/gui/LayerState.cpp
+++ b/libs/gui/LayerState.cpp
@@ -930,7 +930,6 @@ status_t DisplayCaptureArgs::writeToParcel(Parcel* output) const {
SAFE_PARCEL(output->writeStrongBinder, displayToken);
SAFE_PARCEL(output->writeUint32, width);
SAFE_PARCEL(output->writeUint32, height);
- SAFE_PARCEL(output->writeBool, useIdentityTransform);
return NO_ERROR;
}
@@ -940,7 +939,6 @@ status_t DisplayCaptureArgs::readFromParcel(const Parcel* input) {
SAFE_PARCEL(input->readStrongBinder, &displayToken);
SAFE_PARCEL(input->readUint32, &width);
SAFE_PARCEL(input->readUint32, &height);
- SAFE_PARCEL(input->readBool, &useIdentityTransform);
return NO_ERROR;
}