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

Commit b12417e6 authored by neo.he's avatar neo.he Committed by android-build-merger
Browse files

Merge changes If756ad2a,I19aeb7ac am: 15feba03 am: 47609db7 am: e59f1b0b

am: ce6e58ab

Change-Id: I8b814f55a23823b0624ecece845dfe3553c5bb43
parents e1a0c6db ce6e58ab
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1365,9 +1365,9 @@ void Layer::computeGeometry(const sp<const DisplayDevice>& hw, Mesh& mesh,

bool Layer::isOpaque(const Layer::State& s) const
{
    // if we don't have a buffer yet, we're translucent regardless of the
    // if we don't have a buffer or sidebandStream yet, we're translucent regardless of the
    // layer's opaque flag.
    if (mActiveBuffer == 0) {
    if ((mSidebandStream == nullptr) && (mActiveBuffer == nullptr)) {
        return false;
    }

+1 −0
Original line number Diff line number Diff line
@@ -382,6 +382,7 @@ static status_t selectEGLConfig(EGLDisplay display, EGLint format,
        attribs[EGL_RED_SIZE]                   = 8;
        attribs[EGL_GREEN_SIZE]                 = 8;
        attribs[EGL_BLUE_SIZE]                  = 8;
        attribs[EGL_ALPHA_SIZE]                 = 8;
        wantedAttribute                         = EGL_NONE;
        wantedAttributeValue                    = EGL_NONE;
    } else {