diff options
author | Chet Haase <chet@google.com> | 2012-03-22 08:33:09 -0700 |
---|---|---|
committer | Chet Haase <chet@google.com> | 2012-03-22 08:33:09 -0700 |
commit | ad13c81371cb0b7e49b4c33159a346ce08ac5d69 (patch) | |
tree | 8d47082b929d42c016acaf4ea2f86355dc52c13e /libs/hwui | |
parent | 222dfc784e5c5b4eb6a4770b9f46fe96eecbd65d (diff) | |
download | frameworks_base-ad13c81371cb0b7e49b4c33159a346ce08ac5d69.zip frameworks_base-ad13c81371cb0b7e49b4c33159a346ce08ac5d69.tar.gz frameworks_base-ad13c81371cb0b7e49b4c33159a346ce08ac5d69.tar.bz2 |
Disable DisplayList properties
DisplayList properties are (again) disabled by default, via flags in
View.java and DisplayListRenderer.h. There are various artifacts to
chase down before enabling by default.
Issue #6198472 Native crash at pc 00076428 in many different apps in JRM80
Issue #6204173 Date/time picker isn't rendering all parts of UI
Issue #6203941 All Apps overscroll effect is rendered weirdly/has flickering
Issue #6200058 CAB rendering issue - not drawing items?
Issue #6198578 Front camera shows black screen after taking picture.
Change-Id: I045dc82ce1d85fedbae3bb88eb2a2dfb6891d41f
Diffstat (limited to 'libs/hwui')
-rw-r--r-- | libs/hwui/DisplayListRenderer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/DisplayListRenderer.h b/libs/hwui/DisplayListRenderer.h index 38d0374..4bbb04f 100644 --- a/libs/hwui/DisplayListRenderer.h +++ b/libs/hwui/DisplayListRenderer.h @@ -51,7 +51,7 @@ namespace uirenderer { // Set to 1 to enable native processing of View properties. 0 by default. Eventually this // will go away and we will always use this approach for accelerated apps. -#define USE_DISPLAY_LIST_PROPERTIES 1 +#define USE_DISPLAY_LIST_PROPERTIES 0 #define TRANSLATION 0x0001 #define ROTATION 0x0002 |