diff options
| author | 2011-05-06 14:13:05 -0700 | |
|---|---|---|
| committer | 2011-05-06 14:14:20 -0700 | |
| commit | c54ed966f78b9ee8117931859d62faa6f11fe018 (patch) | |
| tree | 4e1511aa1408128e2a88cde1a537763accaf2c0a /libs | |
| parent | 3825fef300122ffcc262e56a36a9fc36d8d084b0 (diff) | |
Minor javadoc enhancements
Change-Id: Ic24bb0e1e669989f0cae3a9b8fa064b38c8e7948
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/hwui/OpenGLRenderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/OpenGLRenderer.cpp b/libs/hwui/OpenGLRenderer.cpp index ea40bf4555cd..80a7beddc804 100644 --- a/libs/hwui/OpenGLRenderer.cpp +++ b/libs/hwui/OpenGLRenderer.cpp @@ -1493,7 +1493,7 @@ void OpenGLRenderer::drawLines(float* points, int count, SkPaint* paint) { int generatedVerticesCount = 0; int verticesCount = count; if (count > 4) { - // Polyline: account for extra vertices needed for continous tri-strip + // Polyline: account for extra vertices needed for continuous tri-strip verticesCount += (count - 4); } |