diff options
author | Romain Guy <romainguy@google.com> | 2013-02-13 18:39:43 -0800 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2013-02-13 18:39:43 -0800 |
commit | ff316ec7a76e52572a2e89b691e6b3bba0cafba3 (patch) | |
tree | 8418a45b809c9382a0fc3d9d9bb6db6a537dd4cc /tests/HwAccelerationTest/src | |
parent | 2b44eb75c42e4caa94f0b002f0ea9e134fe7b543 (diff) | |
download | frameworks_base-ff316ec7a76e52572a2e89b691e6b3bba0cafba3.zip frameworks_base-ff316ec7a76e52572a2e89b691e6b3bba0cafba3.tar.gz frameworks_base-ff316ec7a76e52572a2e89b691e6b3bba0cafba3.tar.bz2 |
Implement support for drawBitmapMesh's colors array
Change-Id: I3d901f6267c2918771ac30ff55c8d80c3ab5b725
Diffstat (limited to 'tests/HwAccelerationTest/src')
-rw-r--r-- | tests/HwAccelerationTest/src/com/android/test/hwui/BitmapMeshActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/HwAccelerationTest/src/com/android/test/hwui/BitmapMeshActivity.java b/tests/HwAccelerationTest/src/com/android/test/hwui/BitmapMeshActivity.java index 854dd69..69d34a5 100644 --- a/tests/HwAccelerationTest/src/com/android/test/hwui/BitmapMeshActivity.java +++ b/tests/HwAccelerationTest/src/com/android/test/hwui/BitmapMeshActivity.java @@ -54,7 +54,7 @@ public class BitmapMeshActivity extends Activity { 0.0f, height * 2, width, height * 2, width * 2, height * 2, width * 3, height * 2, 0.0f, height * 4, width, height * 4, width * 2, height * 4, width * 4, height * 4, }; - + mColors = new int[] { 0xffff0000, 0xff00ff00, 0xff0000ff, 0xffff0000, 0xff0000ff, 0xffff0000, 0xff00ff00, 0xff00ff00, |