am 32341381
: only abort when errors happen on the main display
* commit '32341381c9493d7953e40f7f79653cfc52868863': only abort when errors happen on the main display
This commit is contained in:
commit
b06fbffbde
@ -228,11 +228,14 @@ void DisplayDevice::swapBuffers(HWComposer& hwc) const {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: we should at least handle EGL_CONTEXT_LOST, by recreating the
|
if (!success) {
|
||||||
// context and resetting our state.
|
EGLint error = eglGetError();
|
||||||
LOG_ALWAYS_FATAL_IF(!success,
|
if (error == EGL_CONTEXT_LOST ||
|
||||||
"eglSwapBuffers(%p, %p) failed with 0x%8x",
|
mType == DisplayDevice::DISPLAY_PRIMARY) {
|
||||||
mDisplay, mSurface, eglGetError());
|
LOG_ALWAYS_FATAL("eglSwapBuffers(%p, %p) failed with 0x%08x",
|
||||||
|
mDisplay, mSurface, eglGetError());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DisplayDevice::onSwapBuffersCompleted(HWComposer& hwc) const {
|
void DisplayDevice::onSwapBuffersCompleted(HWComposer& hwc) const {
|
||||||
|
Loading…
Reference in New Issue
Block a user