diff options
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 23895c0c9f..2922ce9542 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;  }  |