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

Commit 7e9ba2dc authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am a59aaed8: am bc881e66: Merge "frameworks/base: Swap width and height of...

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

Merge commit 'a59aaed81b47f59ee9ee724760c4c39fcf429a18'

* commit 'a59aaed81b47f59ee9ee724760c4c39fcf429a18':
  frameworks/base: Swap width and height of temporary buffer only with
parents 8f4970e3 4952ac04
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -495,7 +495,7 @@ status_t LayerBuffer::BufferSource::initTempBuffer() const
    const ISurface::BufferHeap& buffers(mBufferHeap);
    const ISurface::BufferHeap& buffers(mBufferHeap);
    uint32_t w = mLayer.mTransformedBounds.width();
    uint32_t w = mLayer.mTransformedBounds.width();
    uint32_t h = mLayer.mTransformedBounds.height();
    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;
        int t = w; w = h; h = t;
    }
    }