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

Commit 937052fb authored by Jesse Hall's avatar Jesse Hall Committed by Android Git Automerger
Browse files

am a069e853: am 649bafb7: Merge "bufferqueue: workaround: allow NULL fence...

am a069e853: am 649bafb7: Merge "bufferqueue: workaround: allow NULL fence with queueBuffer (DO NOT MERGE)" into lmp-dev

* commit 'a069e853':
  bufferqueue: workaround: allow NULL fence with queueBuffer (DO NOT MERGE)
parents f65fba5c a069e853
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -523,7 +523,12 @@ status_t BufferQueueProducer::queueBuffer(int slot,

    if (fence == NULL) {
        BQ_LOGE("queueBuffer: fence is NULL");
        return BAD_VALUE;
        // Temporary workaround for b/17946343: soldier-on instead of returning an error. This
        // prevents the client from dying, at the risk of visible corruption due to hwcomposer
        // reading the buffer before the producer is done rendering it. Unless the buffer is the
        // last frame of an animation, the corruption will be transient.
        fence = Fence::NO_FENCE;
        // return BAD_VALUE;
    }

    switch (scalingMode) {