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

Commit d0bdfcb2 authored by Courtney Goeltzenleuchter's avatar Courtney Goeltzenleuchter Committed by android-build-merger
Browse files

Merge changes If4271719,I9c9b5de9,I46a26a67 into oc-dr1-dev am: ddd9c712 am: e124f74d

am: 346203f9

Change-Id: Ied0a2337150aaf982833dc99dacb7015ae0fa01e
parents 896a01d7 346203f9
Loading
Loading
Loading
Loading
+7 −1
Original line number Original line Diff line number Diff line
@@ -183,7 +183,13 @@ status_t FramebufferSurface::nextBuffer(sp<GraphicBuffer>& outBuffer, sp<Fence>&
#else
#else
    outBuffer = mCurrentBuffer;
    outBuffer = mCurrentBuffer;
#endif
#endif
    return NO_ERROR;
    status_t result =
            mHwc.setClientTarget(mDisplayType, outSlot, outFence, outBuffer, outDataspace);
    if (result != NO_ERROR) {
        ALOGE("error posting framebuffer: %d", result);
    }

    return result;
}
}


#ifndef USE_HWC2
#ifndef USE_HWC2