| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 #ifndef SkXPSDevice_DEFINED | 8 #ifndef SkXPSDevice_DEFINED |
| 9 #define SkXPSDevice_DEFINED | 9 #define SkXPSDevice_DEFINED |
| 10 | 10 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 virtual void drawPath( | 88 virtual void drawPath( |
| 89 const SkDraw&, | 89 const SkDraw&, |
| 90 const SkPath& platonicPath, | 90 const SkPath& platonicPath, |
| 91 const SkPaint& paint, | 91 const SkPaint& paint, |
| 92 const SkMatrix* prePathMatrix, | 92 const SkMatrix* prePathMatrix, |
| 93 bool pathIsMutable) SK_OVERRIDE; | 93 bool pathIsMutable) SK_OVERRIDE; |
| 94 | 94 |
| 95 virtual void drawBitmap( | 95 virtual void drawBitmap( |
| 96 const SkDraw&, | 96 const SkDraw&, |
| 97 const SkBitmap& bitmap, | 97 const SkBitmap& bitmap, |
| 98 const SkIRect* srcRectOrNull, | |
| 99 const SkMatrix& matrix, | 98 const SkMatrix& matrix, |
| 100 const SkPaint& paint) SK_OVERRIDE; | 99 const SkPaint& paint) SK_OVERRIDE; |
| 101 | 100 |
| 102 virtual void drawSprite( | 101 virtual void drawSprite( |
| 103 const SkDraw&, | 102 const SkDraw&, |
| 104 const SkBitmap& bitmap, | 103 const SkBitmap& bitmap, |
| 105 int x, int y, | 104 int x, int y, |
| 106 const SkPaint& paint) SK_OVERRIDE; | 105 const SkPaint& paint) SK_OVERRIDE; |
| 107 | 106 |
| 108 virtual void drawText( | 107 virtual void drawText( |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 Usage usage) SK_OVERRIDE; | 315 Usage usage) SK_OVERRIDE; |
| 317 | 316 |
| 318 // Disable the default copy and assign implementation. | 317 // Disable the default copy and assign implementation. |
| 319 SkXPSDevice(const SkXPSDevice&); | 318 SkXPSDevice(const SkXPSDevice&); |
| 320 void operator=(const SkXPSDevice&); | 319 void operator=(const SkXPSDevice&); |
| 321 | 320 |
| 322 typedef SkDevice INHERITED; | 321 typedef SkDevice INHERITED; |
| 323 }; | 322 }; |
| 324 | 323 |
| 325 #endif | 324 #endif |
| OLD | NEW |