summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Pablo Ceballos <pceballos@google.com> 2016-05-05 21:28:56 +0000
committer android-build-merger <android-build-merger@google.com> 2016-05-05 21:28:56 +0000
commit067b2ca8f53e6331f05fc23820bf5113b88a97b2 (patch)
tree357e47a7422c9dffb6ff15f42b5becad6280edb9
parent4b966273d61c6a07f17c46b17569c806527bdec9 (diff)
parent876c150be2164a20d3fc6da44f0e668e00960dda (diff)
Merge "Revert "Add debug dump if about to segfault"" into nyc-dev
am: 876c150be2 * commit '876c150be2164a20d3fc6da44f0e668e00960dda': Revert "Add debug dump if about to segfault" Change-Id: Id2f976413b60262c099c28e786d22d417efc09d0
-rw-r--r--libs/gui/GLConsumer.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/libs/gui/GLConsumer.cpp b/libs/gui/GLConsumer.cpp
index 7a1ad46875..34b9b38f96 100644
--- a/libs/gui/GLConsumer.cpp
+++ b/libs/gui/GLConsumer.cpp
@@ -416,21 +416,6 @@ status_t GLConsumer::updateAndReleaseLocked(const BufferItem& item,
return err;
}
- // For investigating b/27674961
- if (mEglSlots[slot].mEglImage == nullptr) {
- ALOGE("If you see this message in a log please post the log to "
- "b/27674961");
- ALOGE("slot = %d, mCurrentTexture = %d, mCurrentTextureImage = %p",
- slot, mCurrentTexture, mCurrentTextureImage.get());
- for (int i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
- ALOGE("mEglSlots[%d].mEglImage = %p", i,
- mEglSlots[i].mEglImage.get());
- }
- String8 dump;
- dumpLocked(dump, "");
- ALOGE("%s", dump.string());
- }
-
// Ensure we have a valid EglImageKHR for the slot, creating an EglImage
// if nessessary, for the gralloc buffer currently in the slot in
// ConsumerBase.