Index: src/core/SkCanvas.cpp |
=================================================================== |
--- src/core/SkCanvas.cpp (revision 8806) |
+++ src/core/SkCanvas.cpp (working copy) |
@@ -1971,6 +1971,18 @@ |
// do nothing. Subclasses may do something with the data |
} |
+void SkCanvas::beginCommentGroup(const char* description) { |
djsollen
2013/05/28 14:19:11
why not just put the empty impl in the header?
robertphillips
2013/05/28 15:45:31
Done - I was mimicking what was done for drawData.
|
+ // do nothing. Subclasses may do something |
+} |
+ |
+void SkCanvas::addComment(const char* kywd, const char* value) { |
+ // do nothing. Subclasses may do something |
+} |
+ |
+void SkCanvas::endCommentGroup() { |
+ // do nothing. Subclasses may do something |
+} |
+ |
////////////////////////////////////////////////////////////////////////////// |
// These methods are NOT virtual, and therefore must call back into virtual |
// methods, rather than actually drawing themselves. |