Index: src/pipe/SkGPipeWrite.cpp |
=================================================================== |
--- src/pipe/SkGPipeWrite.cpp (revision 9288) |
+++ src/pipe/SkGPipeWrite.cpp (working copy) |
@@ -255,6 +255,9 @@ |
const uint16_t indices[], int indexCount, |
const SkPaint&) SK_OVERRIDE; |
virtual void drawData(const void*, size_t) SK_OVERRIDE; |
+ virtual void beginCommentGroup(const char* description) SK_OVERRIDE; |
+ virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE; |
+ virtual void endCommentGroup() SK_OVERRIDE; |
/** |
* Flatten an SkBitmap to send to the reader, where it will be referenced |
@@ -970,6 +973,18 @@ |
} |
} |
+void SkGPipeCanvas::beginCommentGroup(const char* description) { |
+ // ignore for now |
+} |
+ |
+void SkGPipeCanvas::addComment(const char* kywd, const char* value) { |
+ // ignore for now |
+} |
+ |
+void SkGPipeCanvas::endCommentGroup() { |
+ // ignore for now |
+} |
+ |
void SkGPipeCanvas::flushRecording(bool detachCurrentBlock) { |
doNotify(); |
if (detachCurrentBlock) { |