summaryrefslogtreecommitdiffstats
path: root/libs/hwui
diff options
context:
space:
mode:
authorztenghui <ztenghui@google.com>2014-07-09 16:46:20 -0700
committerTenghui Zhu <ztenghui@google.com>2014-07-09 23:53:54 +0000
commit83f7ee8d12df1e8f031a0d23a00084f4fcd0d2f3 (patch)
treea526ae2e4e54d3103a6af2fa2f9a2dfdbeaa5dd1 /libs/hwui
parentcb665af8f10d8549dea742eb4f6dd622753044e9 (diff)
downloadframeworks_base-83f7ee8d12df1e8f031a0d23a00084f4fcd0d2f3.zip
frameworks_base-83f7ee8d12df1e8f031a0d23a00084f4fcd0d2f3.tar.gz
frameworks_base-83f7ee8d12df1e8f031a0d23a00084f4fcd0d2f3.tar.bz2
Remove the unnessary log
We still need to investigate the underlying problem and fix it. bug:16015708 Change-Id: If38b550d5af990d5aaa6633ee129a61e927d66c1
Diffstat (limited to 'libs/hwui')
-rw-r--r--libs/hwui/ShadowTessellator.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/libs/hwui/ShadowTessellator.cpp b/libs/hwui/ShadowTessellator.cpp
index 30c6f5d..bcfda99 100644
--- a/libs/hwui/ShadowTessellator.cpp
+++ b/libs/hwui/ShadowTessellator.cpp
@@ -187,7 +187,6 @@ Vector2 ShadowTessellator::centroid2d(const Vector2* poly, int polyLength) {
*/
bool ShadowTessellator::isClockwise(const Vector2* polygon, int len) {
if (len < 2 || polygon == NULL) {
- ALOGW("Invalid polygon %p, length is %d @ isClockwise()", polygon, len);
return true;
}
double sum = 0;