commit | e6c0bda5dd945f3668b4108c49ee52f1a04253d6 | [log] [tgz] |
---|---|---|
author | Rob Tsuk <robtsuk@google.com> | Tue Nov 04 15:19:59 2014 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Tue Nov 04 15:20:00 2014 +0000 |
tree | e600ef0a8b93ce22b711fd8b3bfaafc05a22da99 | |
parent | 1482b0535e1708fbf9914946abe59c36f39633e7 [diff] | |
parent | b7c26562d08bf72882eeca268a1bb51ea579653d [diff] |
Merge "Make points drawn with default paint visible" into lmp-mr1-dev
diff --git a/libs/hwui/PathTessellator.cpp b/libs/hwui/PathTessellator.cpp index 281ca02..27ef06f 100644 --- a/libs/hwui/PathTessellator.cpp +++ b/libs/hwui/PathTessellator.cpp
@@ -812,7 +812,7 @@ // 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);