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

Commit 6562eb87 authored by Lucas Dupin's avatar Lucas Dupin Committed by Gerrit Code Review
Browse files

Merge "[Bugfix][BootAnimation] Fix the issue of the transparent background...

Merge "[Bugfix][BootAnimation] Fix the issue of the transparent background image shows transparent background unexpectedly in BootAnimation on some MTK platforms."
parents f111beaa c341544c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -509,7 +509,8 @@ status_t BootAnimation::readyToRun() {
    resolution = limitSurfaceSize(resolution.width, resolution.height);
    // create the native surface
    sp<SurfaceControl> control = session()->createSurface(String8("BootAnimation"),
            resolution.getWidth(), resolution.getHeight(), PIXEL_FORMAT_RGB_565);
            resolution.getWidth(), resolution.getHeight(), PIXEL_FORMAT_RGB_565,
            ISurfaceComposerClient::eOpaque);

    SurfaceComposerClient::Transaction t;