| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2010 The Android Open Source Project | 2 * Copyright 2010 The Android Open Source Project |
| 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 SkDevice_DEFINED | 8 #ifndef SkDevice_DEFINED |
| 9 #define SkDevice_DEFINED | 9 #define SkDevice_DEFINED |
| 10 | 10 |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 int scalarsPerPos, const SkPaint& paint) = 0; | 236 int scalarsPerPos, const SkPaint& paint) = 0; |
| 237 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, | 237 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
| 238 const SkPath& path, const SkMatrix* matrix, | 238 const SkPath& path, const SkMatrix* matrix, |
| 239 const SkPaint& paint) = 0; | 239 const SkPaint& paint) = 0; |
| 240 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCou
nt, | 240 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCou
nt, |
| 241 const SkPoint verts[], const SkPoint texs[], | 241 const SkPoint verts[], const SkPoint texs[], |
| 242 const SkColor colors[], SkXfermode* xmode, | 242 const SkColor colors[], SkXfermode* xmode, |
| 243 const uint16_t indices[], int indexCount, | 243 const uint16_t indices[], int indexCount, |
| 244 const SkPaint& paint) = 0; | 244 const SkPaint& paint) = 0; |
| 245 // default implementation calls drawVertices | 245 // default implementation calls drawVertices |
| 246 virtual void drawPatch(const SkDraw&, const SkPatch& patch, const SkPaint& p
aint); | 246 virtual void drawPatch(const SkDraw&, const SkPoint cubics[12], const SkColo
r colors[4], |
| 247 const SkPoint texCoords[4], SkXfermode* xmode, const
SkPaint& paint); |
| 247 /** The SkDevice passed will be an SkDevice which was returned by a call to | 248 /** The SkDevice passed will be an SkDevice which was returned by a call to |
| 248 onCreateDevice on this device with kSaveLayer_Usage. | 249 onCreateDevice on this device with kSaveLayer_Usage. |
| 249 */ | 250 */ |
| 250 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, | 251 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, |
| 251 const SkPaint&) = 0; | 252 const SkPaint&) = 0; |
| 252 | 253 |
| 253 bool readPixels(const SkImageInfo&, void* dst, size_t rowBytes, int x, int y
); | 254 bool readPixels(const SkImageInfo&, void* dst, size_t rowBytes, int x, int y
); |
| 254 | 255 |
| 255 /////////////////////////////////////////////////////////////////////////// | 256 /////////////////////////////////////////////////////////////////////////// |
| 256 | 257 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 SkMetaData* fMetaData; | 388 SkMetaData* fMetaData; |
| 388 | 389 |
| 389 #ifdef SK_DEBUG | 390 #ifdef SK_DEBUG |
| 390 bool fAttachedToCanvas; | 391 bool fAttachedToCanvas; |
| 391 #endif | 392 #endif |
| 392 | 393 |
| 393 typedef SkRefCnt INHERITED; | 394 typedef SkRefCnt INHERITED; |
| 394 }; | 395 }; |
| 395 | 396 |
| 396 #endif | 397 #endif |
| OLD | NEW |