summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Rob Tsuk <robtsuk@google.com> 2014-11-04 15:19:59 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2014-11-04 15:20:00 +0000
commite6c0bda5dd945f3668b4108c49ee52f1a04253d6 (patch)
treee600ef0a8b93ce22b711fd8b3bfaafc05a22da99
parent1482b0535e1708fbf9914946abe59c36f39633e7 (diff)
parentb7c26562d08bf72882eeca268a1bb51ea579653d (diff)
Merge "Make points drawn with default paint visible" into lmp-mr1-dev
-rw-r--r--libs/hwui/PathTessellator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/PathTessellator.cpp b/libs/hwui/PathTessellator.cpp
index 281ca02c39f1..27ef06fae866 100644
--- a/libs/hwui/PathTessellator.cpp
+++ b/libs/hwui/PathTessellator.cpp
@@ -812,7 +812,7 @@ void PathTessellator::tessellatePoints(const float* points, int count, const SkP
// determine point shape
SkPath path;
float radius = paintInfo.halfStrokeWidth;
- if (radius == 0.0f) radius = 0.25f;
+ if (radius == 0.0f) radius = 0.5f;
if (paintInfo.cap == SkPaint::kRound_Cap) {
path.addCircle(0, 0, radius);