Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 950ff1b8 authored by John Reck's avatar John Reck
Browse files

Be more conservative about current buffer

Bug: 18065565
Change-Id: I0b9c85ecf384ebe525e3a38803ab77d7ee37f33a
parent e67b8d28
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -105,12 +105,11 @@ bool EglManager::hasEglContext() {
void EglManager::requireGlContext() {
    LOG_ALWAYS_FATAL_IF(mEglDisplay == EGL_NO_DISPLAY, "No EGL context");

    // We don't care *WHAT* surface is active, just that one is active to give
    // us access to the GL context
    if (mCurrentSurface == EGL_NO_SURFACE) {
    // We can't be certain about the state of the current surface (whether
    // or not it is destroyed, for example), so err on the side of using
    // the pbuffer surface which we fully control
    usePBufferSurface();
}
}

void EglManager::loadConfig() {
    EGLint swapBehavior = mCanSetPreserveBuffer ? EGL_SWAP_BEHAVIOR_PRESERVED_BIT : 0;