diff options
| author | 2012-08-20 11:30:44 -0700 | |
|---|---|---|
| committer | 2012-08-20 11:30:44 -0700 | |
| commit | f8d33c652b930abbfb0722f3a2928cbc2ea71078 (patch) | |
| tree | 0e9e364438f492dc2cb1c2968d7fbc0958f99440 /libs/gui/SurfaceTexture.cpp | |
| parent | 2c7eb92b6394427bfe81962668d46194959bc722 (diff) | |
SurfaceTexture: call ConsumerBase::freeBufferLocked
This change fixes SurfaceTexture::freeBufferLocked so that it calls the base
class implementation.
Change-Id: I45d76fb2eb02c1fa6e4e917823ead83e2086bd15
Diffstat (limited to 'libs/gui/SurfaceTexture.cpp')
| -rw-r--r-- | libs/gui/SurfaceTexture.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/gui/SurfaceTexture.cpp b/libs/gui/SurfaceTexture.cpp index 451ccc26ec..0579a3decc 100644 --- a/libs/gui/SurfaceTexture.cpp +++ b/libs/gui/SurfaceTexture.cpp @@ -710,6 +710,7 @@ void SurfaceTexture::freeBufferLocked(int slotIndex) { eglDestroyImageKHR(mEglDisplay, img); } mEglSlots[slotIndex].mEglImage = EGL_NO_IMAGE_KHR; + ConsumerBase::freeBufferLocked(slotIndex); } void SurfaceTexture::abandonLocked() { |