summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2013-09-05 16:11:18 -0700
committerChris Craik <ccraik@google.com>2013-09-05 16:11:18 -0700
commit66063ae2d6ff523bbf200cccdb9223d824c240a4 (patch)
treeba09faecc2c98a10482c97b0640143fd8ec42737 /libs
parent0cdc24a2fb5268241cf16c6b28a4a3b58965a2c8 (diff)
downloadframeworks_base-66063ae2d6ff523bbf200cccdb9223d824c240a4.zip
frameworks_base-66063ae2d6ff523bbf200cccdb9223d824c240a4.tar.gz
frameworks_base-66063ae2d6ff523bbf200cccdb9223d824c240a4.tar.bz2
Dump the right matrix when logging display lists
bug:10631274 Change-Id: I6b32bfcb3e207321da60807091d7ac0ecf6112ab
Diffstat (limited to 'libs')
-rw-r--r--libs/hwui/DisplayList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/DisplayList.cpp b/libs/hwui/DisplayList.cpp
index cebfd26..0d7b37d 100644
--- a/libs/hwui/DisplayList.cpp
+++ b/libs/hwui/DisplayList.cpp
@@ -358,7 +358,7 @@ void DisplayList::outputViewProperties(const int level) {
}
if (mAnimationMatrix) {
ALOGD("%*sConcatMatrix (animation) %p: " MATRIX_STRING,
- level * 2, "", mAnimationMatrix, MATRIX_ARGS(mStaticMatrix));
+ level * 2, "", mAnimationMatrix, MATRIX_ARGS(mAnimationMatrix));
}
if (mMatrixFlags != 0) {
if (mMatrixFlags == TRANSLATION) {