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

Commit b203a27f authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "frameworks/base: Swap width and height of temporary buffer only with orientation change"

parents cc15993d ad1c5cf9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -540,7 +540,7 @@ status_t LayerBuffer::BufferSource::initTempBuffer() const
    const ISurface::BufferHeap& buffers(mBufferHeap);
    uint32_t w = mLayer.mTransformedBounds.width();
    uint32_t h = mLayer.mTransformedBounds.height();
    if (buffers.w * h != buffers.h * w) {
    if (mLayer.getOrientation() & (Transform::ROT_90 | Transform::ROT_270)) {
        int t = w; w = h; h = t;
    }