summaryrefslogtreecommitdiffstats
path: root/tests/HwAccelerationTest/AndroidManifest.xml
diff options
context:
space:
mode:
authorChet Haase <chet@google.com>2012-03-29 16:28:32 -0700
committerChet Haase <chet@google.com>2012-04-02 15:31:24 -0700
commit9420abd56a2af7ddbeb70562b79d61b2dca8c5a1 (patch)
tree8625a64e2d9ffd1520d890c2eb7989ccbef28adc /tests/HwAccelerationTest/AndroidManifest.xml
parent1d6013357847983180a317e2acaf807bde8b7ea7 (diff)
downloadframeworks_base-9420abd56a2af7ddbeb70562b79d61b2dca8c5a1.zip
frameworks_base-9420abd56a2af7ddbeb70562b79d61b2dca8c5a1.tar.gz
frameworks_base-9420abd56a2af7ddbeb70562b79d61b2dca8c5a1.tar.bz2
Re-enable DisplayList properties.
Re-enabling DisplayList properties last week caused some app errors due to the way that some transforms were being handled (specifically, those coming from the old Animations and ViewGroup's childStaticTransformation field). This change pushes *all* transform/alpha data from View.draw() into the view's DisplayList, making DisplayLists more encapsulated (and correct). Change-Id: Ia702c6aae050784bb3ed505aa87553113f8a1938
Diffstat (limited to 'tests/HwAccelerationTest/AndroidManifest.xml')
-rw-r--r--tests/HwAccelerationTest/AndroidManifest.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/HwAccelerationTest/AndroidManifest.xml b/tests/HwAccelerationTest/AndroidManifest.xml
index b310d93..f4c0841 100644
--- a/tests/HwAccelerationTest/AndroidManifest.xml
+++ b/tests/HwAccelerationTest/AndroidManifest.xml
@@ -638,7 +638,6 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
-
<activity
android:name="StackActivity"
@@ -649,5 +648,14 @@
</intent-filter>
</activity>
+ <activity
+ android:name="TransformsAndAnimationsActivity"
+ android:label="_TransformAnim">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
</application>
</manifest>