replicant-frameworks_native/libs/surfaceflinger_client
Mathias Agopian ed8a50c9c5 fix [3361121] hang in glClear() - device unresponsive, OTA fails
Generally we never want to lock a buffer for write access if it is at
the "head" on the surfaceflinger side. The only exception (1) is when
the buffer is not currently in use AND there is at least one queued
buffer -- in which case, SurfaceFlinger will never use said buffer
anymore, because on the next composition around, it will be able to
retire the first queued buffer.

The logic above relies on SurfaceFlinger always retiring
and locking a buffer before composition -- unfortunately this
didn't happen during a screenshot.

This could leave us in a situation where a buffer is locked by the
application for write, and used by SurfaceFlinger for texturing,
causing a hang.

Here, we fix this issue by never assuming the exception (1), it was
intended as an optimization allowing ANativeWindow::lockBuffer() to
return sooner and was justified when most of SF composition was
done in software. The actual buffer locking is now ensured by
gralloc. We could have handled screenshots in a similar way to
a regular composition, but it could have caused glitches on screen,
essentially, taking a screenshot could cause to skip a frame.

Change-Id: I1f226b1ebdf6918439b687c2723955d55b842c55
2011-01-18 15:51:30 -08:00
..
tests
Android.mk Fix remote GraphicBuffer allocation in SurfaceFlinger. 2011-01-13 12:19:04 -08:00
IGraphicBufferAlloc.cpp Fix remote GraphicBuffer allocation in SurfaceFlinger. 2011-01-13 12:19:04 -08:00
ISurface.cpp remove support for PUSH_BUFFER surfaces and overlays 2010-12-08 16:13:59 -08:00
ISurfaceComposer.cpp Fix remote GraphicBuffer allocation in SurfaceFlinger. 2011-01-13 12:19:04 -08:00
ISurfaceComposerClient.cpp
LayerState.cpp
SharedBufferStack.cpp fix [3361121] hang in glClear() - device unresponsive, OTA fails 2011-01-18 15:51:30 -08:00
Surface.cpp Fix error reporting in Surface::cancelBuffer() 2011-01-14 11:04:34 -08:00
SurfaceComposerClient.cpp [3258939] Need snapshot to limit which layers are included 2010-12-10 16:22:31 -08:00