am 8bb9131c: Merge "fix [3367893] Rotating device on YouTube\'s home screen several times kills system_server" into honeycomb

* commit '8bb9131c663b5c4548eed1d9f964d06bccfc4da6':
  fix [3367893] Rotating device on YouTube's home screen several times kills system_server
This commit is contained in:
Mathias Agopian
2011-01-19 17:03:51 -08:00
committed by Android Git Automerger

View File

@@ -253,7 +253,11 @@ void Context::deinitEGL() {
LOGV("%p, deinitEGL", this);
if (mEGL.mContext != EGL_NO_CONTEXT) {
eglMakeCurrent(mEGL.mDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, mEGL.mContext);
eglMakeCurrent(mEGL.mDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
eglDestroySurface(mEGL.mDisplay, mEGL.mSurfaceDefault);
if (mEGL.mSurface != EGL_NO_SURFACE) {
eglDestroySurface(mEGL.mDisplay, mEGL.mSurface);
}
eglDestroyContext(mEGL.mDisplay, mEGL.mContext);
checkEglError("eglDestroyContext");
}