Index: src/utils/SkDumpCanvas.cpp |
=================================================================== |
--- src/utils/SkDumpCanvas.cpp (revision 9288) |
+++ src/utils/SkDumpCanvas.cpp (working copy) |
@@ -442,6 +442,18 @@ |
SkMin32(length, 64), data); |
} |
+void SkDumpCanvas::beginCommentGroup(const char* description) { |
+ this->dump(kBeginCommentGroup_Verb, NULL, "beginCommentGroup(%s)", description); |
+} |
+ |
+void SkDumpCanvas::addComment(const char* kywd, const char* value) { |
+ this->dump(kAddComment_Verb, NULL, "addComment(%s, %s)", kywd, value); |
+} |
+ |
+void SkDumpCanvas::endCommentGroup() { |
+ this->dump(kEndCommentGroup_Verb, NULL, "endCommentGroup()"); |
+} |
+ |
/////////////////////////////////////////////////////////////////////////////// |
/////////////////////////////////////////////////////////////////////////////// |