Index: debugger/SkDebugCanvas.cpp |
=================================================================== |
--- debugger/SkDebugCanvas.cpp (revision 9288) |
+++ debugger/SkDebugCanvas.cpp (working copy) |
@@ -389,6 +389,18 @@ |
addDrawCommand(new DrawData(data, length)); |
} |
+void SkDebugCanvas::beginCommentGroup(const char* description) { |
+ addDrawCommand(new BeginCommentGroup(description)); |
+} |
+ |
+void SkDebugCanvas::addComment(const char* kywd, const char* value) { |
+ addDrawCommand(new Comment(kywd, value)); |
+} |
+ |
+void SkDebugCanvas::endCommentGroup() { |
+ addDrawCommand(new EndCommentGroup()); |
+} |
+ |
void SkDebugCanvas::drawOval(const SkRect& oval, const SkPaint& paint) { |
addDrawCommand(new DrawOval(oval, paint)); |
} |