| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkSVGDevice.h" | 8 #include "SkSVGDevice.h" |
| 9 | 9 |
| 10 #include "SkBase64.h" | 10 #include "SkBase64.h" |
| 11 #include "SkBitmap.h" | 11 #include "SkBitmap.h" |
| 12 #include "SkChecksum.h" | 12 #include "SkChecksum.h" |
| 13 #include "SkClipStack.h" | |
| 14 #include "SkData.h" | 13 #include "SkData.h" |
| 15 #include "SkDraw.h" | 14 #include "SkDraw.h" |
| 16 #include "SkImageEncoder.h" | 15 #include "SkImageEncoder.h" |
| 17 #include "SkPaint.h" | 16 #include "SkPaint.h" |
| 18 #include "SkParsePath.h" | 17 #include "SkParsePath.h" |
| 19 #include "SkShader.h" | 18 #include "SkShader.h" |
| 20 #include "SkStream.h" | 19 #include "SkStream.h" |
| 21 #include "SkTHash.h" | 20 #include "SkTHash.h" |
| 22 #include "SkTypeface.h" | 21 #include "SkTypeface.h" |
| 23 #include "SkUtils.h" | 22 #include "SkUtils.h" |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 const SkPaint& paint) { | 808 const SkPaint& paint) { |
| 810 // todo | 809 // todo |
| 811 SkDebugf("unsupported operation: drawVertices()\n"); | 810 SkDebugf("unsupported operation: drawVertices()\n"); |
| 812 } | 811 } |
| 813 | 812 |
| 814 void SkSVGDevice::drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, | 813 void SkSVGDevice::drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, |
| 815 const SkPaint&) { | 814 const SkPaint&) { |
| 816 // todo | 815 // todo |
| 817 SkDebugf("unsupported operation: drawDevice()\n"); | 816 SkDebugf("unsupported operation: drawDevice()\n"); |
| 818 } | 817 } |
| OLD | NEW |