summaryrefslogtreecommitdiff
path: root/libs/hwui/SpotShadow.cpp
diff options
context:
space:
mode:
author Chris Craik <ccraik@google.com> 2015-11-04 19:46:47 +0000
committer android-build-merger <android-build-merger@google.com> 2015-11-04 19:46:47 +0000
commit34e9b5b2e418dd43e374dcbb3be27710c53d4b9c (patch)
treecc6be44d12f72910c4071b6371ff1512cfc2f8a0 /libs/hwui/SpotShadow.cpp
parent289c3ba2c4b4d97108fc79977339e7bf7b585f7f (diff)
parenta853bb450ce7e6f06220a86dcc171a837d30511b (diff)
Merge "Early return when the scale is 0." into mnc-dr-dev am: 10eb6ab94b am: 8b581e2bc7
am: a853bb450c * commit 'a853bb450ce7e6f06220a86dcc171a837d30511b': Early return when the scale is 0.
Diffstat (limited to 'libs/hwui/SpotShadow.cpp')
-rw-r--r--libs/hwui/SpotShadow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/SpotShadow.cpp b/libs/hwui/SpotShadow.cpp
index b8c98041a6bf..7a2b9af2ba57 100644
--- a/libs/hwui/SpotShadow.cpp
+++ b/libs/hwui/SpotShadow.cpp
@@ -1052,7 +1052,7 @@ void SpotShadow::dumpPolygon(const Vector2* poly, int polyLength, const char* po
*/
void SpotShadow::dumpPolygon(const Vector3* poly, int polyLength, const char* polyName) {
for (int i = 0; i < polyLength; i++) {
- ALOGD("polygon %s i %d x %f y %f", polyName, i, poly[i].x, poly[i].y);
+ ALOGD("polygon %s i %d x %f y %f z %f", polyName, i, poly[i].x, poly[i].y, poly[i].z);
}
}