diff options
Diffstat (limited to 'libs/gui/GLConsumer.cpp')
| -rw-r--r-- | libs/gui/GLConsumer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/GLConsumer.cpp b/libs/gui/GLConsumer.cpp index e1abd45171..55059dd87b 100644 --- a/libs/gui/GLConsumer.cpp +++ b/libs/gui/GLConsumer.cpp @@ -407,7 +407,7 @@ status_t GLConsumer::updateAndReleaseLocked(const BufferItem& item) } // Do whatever sync ops we need to do before releasing the old slot. - if (!item.mSingleBufferMode || slot != mCurrentTexture) { + if (slot != mCurrentTexture) { err = syncForReleaseLocked(mEglDisplay); if (err != NO_ERROR) { // Release the buffer we just acquired. It's not safe to |