am c4aea977: am e6c0bda5: Merge "Make points drawn with default paint visible" into lmp-mr1-dev

* commit 'c4aea977cd35c423132382cf0ae1f3238e2c7d10':
  Make points drawn with default paint visible
This commit is contained in:
Rob Tsuk
2014-11-04 15:29:10 +00:00
committed by Android Git Automerger

View File

@ -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);