diff options
| author | 2024-08-01 22:23:38 +0000 | |
|---|---|---|
| committer | 2024-08-01 22:49:36 +0000 | |
| commit | 62f0c2021c7d0a9ff62fd048746c6317aa91af78 (patch) | |
| tree | a2ff87a05b9502a03afdcade72745fd45c16a8cf /libs/gui/SurfaceComposerClient.cpp | |
| parent | 90768fc1d850011a009dbabfd2f112f22e177efd (diff) | |
Remove unused mTransactionNestCount
Flag: EXEMPT bug fix
Bug: 356936695
Test: presubmit
Change-Id: I80e9eb94d2d877580661fb5927ef70a090565a93
Diffstat (limited to 'libs/gui/SurfaceComposerClient.cpp')
| -rw-r--r-- | libs/gui/SurfaceComposerClient.cpp | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/libs/gui/SurfaceComposerClient.cpp b/libs/gui/SurfaceComposerClient.cpp index e86e13d3ee..f663600f9e 100644 --- a/libs/gui/SurfaceComposerClient.cpp +++ b/libs/gui/SurfaceComposerClient.cpp @@ -827,7 +827,6 @@ SurfaceComposerClient::Transaction::Transaction() {  SurfaceComposerClient::Transaction::Transaction(const Transaction& other)        : mId(other.mId), -        mTransactionNestCount(other.mTransactionNestCount),          mAnimation(other.mAnimation),          mEarlyWakeupStart(other.mEarlyWakeupStart),          mEarlyWakeupEnd(other.mEarlyWakeupEnd), @@ -867,7 +866,6 @@ SurfaceComposerClient::Transaction::createFromParcel(const Parcel* parcel) {  status_t SurfaceComposerClient::Transaction::readFromParcel(const Parcel* parcel) {      const uint64_t transactionId = parcel->readUint64(); -    const uint32_t transactionNestCount = parcel->readUint32();      const bool animation = parcel->readBool();      const bool earlyWakeupStart = parcel->readBool();      const bool earlyWakeupEnd = parcel->readBool(); @@ -964,7 +962,6 @@ status_t SurfaceComposerClient::Transaction::readFromParcel(const Parcel* parcel      // Parsing was successful. Update the object.      mId = transactionId; -    mTransactionNestCount = transactionNestCount;      mAnimation = animation;      mEarlyWakeupStart = earlyWakeupStart;      mEarlyWakeupEnd = earlyWakeupEnd; @@ -996,7 +993,6 @@ status_t SurfaceComposerClient::Transaction::writeToParcel(Parcel* parcel) const      const_cast<SurfaceComposerClient::Transaction*>(this)->cacheBuffers();      parcel->writeUint64(mId); -    parcel->writeUint32(mTransactionNestCount);      parcel->writeBool(mAnimation);      parcel->writeBool(mEarlyWakeupStart);      parcel->writeBool(mEarlyWakeupEnd); @@ -1148,7 +1144,6 @@ void SurfaceComposerClient::Transaction::clear() {      mInputWindowCommands.clear();      mUncacheBuffers.clear();      mMayContainBuffer = false; -    mTransactionNestCount = 0;      mAnimation = false;      mEarlyWakeupStart = false;      mEarlyWakeupEnd = false; |