replicant-frameworks_native/opengl
Jesse Hall 312d7555cb egl: Remove window disconnect before calling driver eglDestroySurface
This was originally added for b/14445579. An in-development app was
attempting to render to a window as an EGLSurface, then tear that
down, change some window properties, and create a new EGLSurface. The
second eglCreateWindowSurface failed because the window was already
connected. This change went in, but it turned out the real problem was
that the app still (unintentionally) had the surface current. After
the app bug was fixed, nobody revisited whether this change was
actually needed.

Turns out it wasn't needed. After an EGLSurface is both destroyed
*AND* not current (basically refcount==0), we were already
disconnecting the window in ~egl_surface_t().

Apart from being unnecessary and redundant, disconnecting the window
here is wrong for two reasons:

(a) The surface may still be in use after eglDestroySurface, if it was
still current. Rendering is undefined in that case, but disconnecting
the window leads to more catastrophic results than necessary.

(b) It's being called before calling the driver's eglDestroySurface.
The driver will almost definitely have a buffer dequeued that it needs
to cancel, and by disconnecting first we turn that into an error that
they don't have a graceful way to deal with.

Bug: 24524053
Change-Id: Ib063134413d25d3526f794aafb5e333e3417ea42
2015-10-14 11:21:25 -07:00
..
include libEGL: whitelist the EGL_KHR_create_context_no_error extension 2015-05-12 08:42:05 -07:00
libagl Check that width and height parameters are small. 2015-05-29 10:54:30 -07:00
libs egl: Remove window disconnect before calling driver eglDestroySurface 2015-10-14 11:21:25 -07:00
specs GLConsumer: start using EGL_ANDROID_image_crop 2013-10-02 17:34:35 +00:00
tests am bceb29c8: Merge "Fix clang -Wc++11-narrowing warnings." 2014-12-11 23:02:01 +00:00
tools Fix EGL shim extension injection for GL ES 3 drivers. 2015-05-28 15:34:31 -07:00