Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: src/pdf/SkPDFDeviceFlattener.h

Issue 925343003: use common impl for drawTextOnPath (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: move includes to the top Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 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 SkPDFDeviceFlattener_DEFINED 8 #ifndef SkPDFDeviceFlattener_DEFINED
9 #define SkPDFDeviceFlattener_DEFINED 9 #define SkPDFDeviceFlattener_DEFINED
10 10
(...skipping 21 matching lines...) Expand all
32 const SkPaint& paint) SK_OVERRIDE; 32 const SkPaint& paint) SK_OVERRIDE;
33 void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint) SK_OVERR IDE; 33 void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint) SK_OVERR IDE;
34 virtual void drawPath(const SkDraw&, const SkPath& origpath, 34 virtual void drawPath(const SkDraw&, const SkPath& origpath,
35 const SkPaint& paint, const SkMatrix* prePathMatrix, 35 const SkPaint& paint, const SkMatrix* prePathMatrix,
36 bool pathIsMutable) SK_OVERRIDE; 36 bool pathIsMutable) SK_OVERRIDE;
37 virtual void drawText(const SkDraw&, const void* text, size_t len, 37 virtual void drawText(const SkDraw&, const void* text, size_t len,
38 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE; 38 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
39 virtual void drawPosText(const SkDraw&, const void* text, size_t len, 39 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
40 const SkScalar pos[], int scalarsPerPos, 40 const SkScalar pos[], int scalarsPerPos,
41 const SkPoint& offset, const SkPaint&) SK_OVERRIDE; 41 const SkPoint& offset, const SkPaint&) SK_OVERRIDE;
42 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
43 const SkPath& path, const SkMatrix* matrix,
44 const SkPaint& paint) SK_OVERRIDE;
45 private: 42 private:
46 43
47 bool mustFlatten(const SkDraw& d) const; 44 bool mustFlatten(const SkDraw& d) const;
48 bool mustPathText(const SkDraw& d, const SkPaint& paint); 45 bool mustPathText(const SkDraw& d, const SkPaint& paint);
49 46
50 friend class SkDocument_PDF; 47 friend class SkDocument_PDF;
51 }; 48 };
52 49
53 #endif // SkPDFDeviceFlattener_DEFINED 50 #endif // SkPDFDeviceFlattener_DEFINED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698