Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0eac63ff authored by Vishnu Nair's avatar Vishnu Nair Committed by Android (Google) Code Review
Browse files

Merge "Fix java SurfaceControl BBQ wrapper update path" into sc-dev

parents f2b9e683 f9cb20ab
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -166,7 +166,7 @@ void SurfaceControl::updateDefaultBufferSize(uint32_t width, uint32_t height) {
    Mutex::Autolock _l(mLock);
    Mutex::Autolock _l(mLock);
    mWidth = width; mHeight = height;
    mWidth = width; mHeight = height;
    if (mBbq) {
    if (mBbq) {
      mBbq->update(this, width, height, mFormat);
        mBbq->update(mBbqChild, width, height, mFormat);
    }
    }


}
}