diff options
| author | 2011-12-12 14:10:04 -0800 | |
|---|---|---|
| committer | 2011-12-12 14:10:04 -0800 | |
| commit | a1dee3f500eccedbf5e50d466315fb28ba812cfc (patch) | |
| tree | 5b5816c31c79c16be529fcfe69b02eef70f7b184 /libs/gui/SurfaceTexture.cpp | |
| parent | 2ace3b01ab9447ce9fda2f578e31c1c11f4837cb (diff) | |
| parent | 798b9cdf8ca6fdede46c7f697bed78756f9029f9 (diff) | |
Merge "SurfaceTexture: fix a verbose-log compile error" into ics-mr1
Diffstat (limited to 'libs/gui/SurfaceTexture.cpp')
| -rw-r--r-- | libs/gui/SurfaceTexture.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gui/SurfaceTexture.cpp b/libs/gui/SurfaceTexture.cpp index fcd287c02276..4772189b7fb4 100644 --- a/libs/gui/SurfaceTexture.cpp +++ b/libs/gui/SurfaceTexture.cpp @@ -498,8 +498,8 @@ status_t SurfaceTexture::dequeueBuffer(int *outBuf, uint32_t w, uint32_t h, eglDestroySyncKHR(dpy, fence); } - ST_LOGV("dequeueBuffer: returning slot=%d buf=%p flags=%#x", buf, - mSlots[buf].mGraphicBuffer->handle, returnFlags); + ST_LOGV("dequeueBuffer: returning slot=%d buf=%p flags=%#x", *outBuf, + mSlots[*outBuf].mGraphicBuffer->handle, returnFlags); return returnFlags; } |