diff options
| author | 2015-11-04 19:33:11 +0000 | |
|---|---|---|
| committer | 2015-11-04 19:33:11 +0000 | |
| commit | 8b581e2bc797d3b470ad7ff3d362a998b42da4ea (patch) | |
| tree | 3c40600b7a00690c12bb71c86d311cf169efa8e4 /libs/hwui/SpotShadow.cpp | |
| parent | 62b16e2e10e488eb69ae0d11d43c7693ad809ec2 (diff) | |
| parent | 10eb6ab94b932c33a708e007b0681b26930260e3 (diff) | |
Merge "Early return when the scale is 0." into mnc-dr-dev
am: 10eb6ab94b
* commit '10eb6ab94b932c33a708e007b0681b26930260e3':
Early return when the scale is 0.
Diffstat (limited to 'libs/hwui/SpotShadow.cpp')
| -rw-r--r-- | libs/hwui/SpotShadow.cpp | 2 |
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); } } |