Skip to content

Commit 76240da

Browse files
committed
Disable DisplayList properties pending fixes for AlphaAnimation
The new DisplayList properties design has ordering conflicts with the way that alpha works with old animations (AlphaAnimation). This CL disables DiksplayList properties while I'm working on a fix and some more thorough tests for old animations-vs-DL properties in general. Change-Id: I8f6893138f939171491c2ec3c889214ee55d17b7
1 parent ee9da04 commit 76240da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/java/android/view/View.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1459,7 +1459,7 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
14591459
* apps.
14601460
* @hide
14611461
*/
1462-
public static final boolean USE_DISPLAY_LIST_PROPERTIES = true;
1462+
public static final boolean USE_DISPLAY_LIST_PROPERTIES = false;
14631463

14641464
/**
14651465
* Map used to store views' tags.

libs/hwui/DisplayListRenderer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace uirenderer {
5151

5252
// Set to 1 to enable native processing of View properties. 0 by default. Eventually this
5353
// will go away and we will always use this approach for accelerated apps.
54-
#define USE_DISPLAY_LIST_PROPERTIES 1
54+
#define USE_DISPLAY_LIST_PROPERTIES 0
5555

5656
#define TRANSLATION 0x0001
5757
#define ROTATION 0x0002

0 commit comments

Comments
 (0)