am d374c20f: Merge "Fix flash of uninitialized surface" into mnc-dev

* commit 'd374c20fc9269913d19666f0994268ed457e0d42':
  Fix flash of uninitialized surface
This commit is contained in:
Adrian Roos
2015-07-13 22:30:29 +00:00
committed by Android Git Automerger

View File

@@ -1700,7 +1700,10 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
Log.v(TAG, "DEBUG_MEDIA: Fading out album artwork"); Log.v(TAG, "DEBUG_MEDIA: Fading out album artwork");
} }
mBackdrop.animate() mBackdrop.animate()
.alpha(0f) // Never let the alpha become zero - otherwise the RenderNode
// won't draw anything and uninitialized memory will show through
// if mScrimSrcModeEnabled. Note that 0.001 is rounded down to 0 in libhwui.
.alpha(0.002f)
.setInterpolator(mBackdropInterpolator) .setInterpolator(mBackdropInterpolator)
.setDuration(300) .setDuration(300)
.setStartDelay(0) .setStartDelay(0)