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

Commit ce6e58ab 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

Change-Id: Ic743e74ef2560e1657c8f73750dc747e91d336f2
parents 5f8e45a1 e59f1b0b
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 {