diff options
author | Michael Lentine <mlentine@google.com> | 2014-08-08 10:30:44 -0700 |
---|---|---|
committer | Michael Lentine <mlentine@google.com> | 2014-08-08 10:30:44 -0700 |
commit | 45e2fc22261cb8ecac4901b4425bcb7352c71174 (patch) | |
tree | ea54e90e911a951f93c8caf3da22209d8478c735 /opengl/libs | |
parent | 25db8dc7c6c155168f308b2f730198bc5a021e35 (diff) | |
download | frameworks_native-45e2fc22261cb8ecac4901b4425bcb7352c71174.zip frameworks_native-45e2fc22261cb8ecac4901b4425bcb7352c71174.tar.gz frameworks_native-45e2fc22261cb8ecac4901b4425bcb7352c71174.tar.bz2 |
Revert "Modify EGL to disconnect the window when the surface gets destroyed."
This reverts commit 843cbb241da60ada234918a30cfe9a01a1e04187.
Diffstat (limited to 'opengl/libs')
-rw-r--r-- | opengl/libs/EGL/eglApi.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/opengl/libs/EGL/eglApi.cpp b/opengl/libs/EGL/eglApi.cpp index 99c01b7..6e77e45 100644 --- a/opengl/libs/EGL/eglApi.cpp +++ b/opengl/libs/EGL/eglApi.cpp @@ -572,15 +572,6 @@ EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) return setError(EGL_BAD_SURFACE, EGL_FALSE); egl_surface_t * const s = get_surface(surface); - ANativeWindow* window = s->win.get(); - if (window) { - int result = native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL); - if (result != OK) { - ALOGE("eglDestroySurface: native_window_api_disconnect (win=%p) " - "failed (%#x)", - window, result); - } - } EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface); if (result == EGL_TRUE) { _s.terminate(); |