Merge "[Bugfix][BootAnimation] Fix the issue of the transparent background image shows transparent background unexpectedly in BootAnimation on some MTK platforms." am: 6562eb87f3

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2092083

Change-Id: I83b26233e432080a42b93cab1c06582ff7de7b02
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Lucas Dupin
2022-05-13 23:53:03 +00:00
committed by Automerger Merge Worker

View File

@@ -509,7 +509,8 @@ status_t BootAnimation::readyToRun() {
resolution = limitSurfaceSize(resolution.width, resolution.height); resolution = limitSurfaceSize(resolution.width, resolution.height);
// create the native surface // create the native surface
sp<SurfaceControl> control = session()->createSurface(String8("BootAnimation"), 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; SurfaceComposerClient::Transaction t;