diff options
| author | 2021-08-10 15:50:23 +0000 | |
|---|---|---|
| committer | 2021-08-10 15:50:23 +0000 | |
| commit | 33900bf3b1300e8f04c60101fb57c53b661b3d41 (patch) | |
| tree | 680ddc9bc392b08f25640c5465653dc821f312a9 /libs/gui/LayerState.cpp | |
| parent | 514270a64a15e57263a0a69b811ca7685d7c266a (diff) | |
| parent | 9ea0a76757b34fb32181b9d36bfe074ef64a38a0 (diff) | |
Merge "Send releaseCallbackId and releaseFence to correct listener" into sc-v2-dev am: 9ea0a76757
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/15479241
Change-Id: Iad4bf4ee2b153c380616a4f86116cbd276f89c50
Diffstat (limited to 'libs/gui/LayerState.cpp')
| -rw-r--r-- | libs/gui/LayerState.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/gui/LayerState.cpp b/libs/gui/LayerState.cpp index 837e5b35f7..5bed69cfc7 100644 --- a/libs/gui/LayerState.cpp +++ b/libs/gui/LayerState.cpp @@ -174,6 +174,7 @@ status_t layer_state_t::write(Parcel& output) const      SAFE_PARCEL(output.write, destinationFrame);      SAFE_PARCEL(output.writeBool, isTrustedOverlay); +    SAFE_PARCEL(output.writeStrongBinder, releaseBufferEndpoint);      return NO_ERROR;  } @@ -303,6 +304,7 @@ status_t layer_state_t::read(const Parcel& input)      SAFE_PARCEL(input.read, destinationFrame);      SAFE_PARCEL(input.readBool, &isTrustedOverlay); +    SAFE_PARCEL(input.readNullableStrongBinder, &releaseBufferEndpoint);      return NO_ERROR;  }  |