summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2015-05-28 15:33:40 -0700
committerChris Craik <ccraik@google.com>2015-05-28 15:33:40 -0700
commit469fb1efd6408e00f39e5ac98e129f10c2180c7d (patch)
tree8896c9cdc02c2ea2a351c7f8a5179668aeee0ee1 /libs
parent1cd7e4c3d0216cfb9a8a685ca8cf6f0d740a9dff (diff)
downloadframeworks_base-469fb1efd6408e00f39e5ac98e129f10c2180c7d.zip
frameworks_base-469fb1efd6408e00f39e5ac98e129f10c2180c7d.tar.gz
frameworks_base-469fb1efd6408e00f39e5ac98e129f10c2180c7d.tar.bz2
Fix build
Change-Id: I7ee28c474aa821eb598f719723d87416a41537b9
Diffstat (limited to 'libs')
-rw-r--r--libs/hwui/PathTessellator.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/hwui/PathTessellator.cpp b/libs/hwui/PathTessellator.cpp
index e7c6c05..310da41 100644
--- a/libs/hwui/PathTessellator.cpp
+++ b/libs/hwui/PathTessellator.cpp
@@ -942,7 +942,8 @@ public:
}
private:
bool initialized = false;
- double lastX, lastY;
+ double lastX = 0;
+ double lastY = 0;
double sum = 0;
};