Added more DrawPoints debugging info for inspector

Review URL: https://codereview.appspot.com/6441084

git-svn-id: http://skia.googlecode.com/svn/trunk@4893 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/debugger/SkDrawCommand.cpp b/debugger/SkDrawCommand.cpp
index 1e569b4..5844049 100644
--- a/debugger/SkDrawCommand.cpp
+++ b/debugger/SkDrawCommand.cpp
@@ -256,6 +256,8 @@
     this->fDrawType = DRAW_POINTS;
 
     this->fInfo.push_back(SkObjectParser::PointsToString(pts, count));
+    this->fInfo.push_back(SkObjectParser::ScalarToString(count, "Points: "));
+    this->fInfo.push_back(SkObjectParser::PointModeToString(mode));
 }
 
 void DrawPoints::execute(SkCanvas* canvas) {