• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2018 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef SkCanvasVirtualEnforcer_DEFINED
9 #define SkCanvasVirtualEnforcer_DEFINED
10 
11 #include "SkCanvas.h"
12 
13 // If you would ordinarily want to inherit from Base (eg SkCanvas, SkNWayCanvas), instead
14 // inherit from SkCanvasVirtualEnforcer<Base>, which will make the build fail if you forget
15 // to override one of SkCanvas' key virtual hooks.
16 template <typename Base>
17 class SkCanvasVirtualEnforcer : public Base {
18 public:
19     using Base::Base;
20 
21 protected:
22     void onDrawPaint(const SkPaint& paint) override = 0;
onDrawBehind(const SkPaint &)23     void onDrawBehind(const SkPaint&) override {} // make zero after android updates
24     void onDrawRect(const SkRect& rect, const SkPaint& paint) override = 0;
25     void onDrawRRect(const SkRRect& rrect, const SkPaint& paint) override = 0;
26     void onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
27                       const SkPaint& paint) override = 0;
28     void onDrawOval(const SkRect& rect, const SkPaint& paint) override = 0;
29     void onDrawArc(const SkRect& rect, SkScalar startAngle, SkScalar sweepAngle, bool useCenter,
30                    const SkPaint& paint) override = 0;
31     void onDrawPath(const SkPath& path, const SkPaint& paint) override = 0;
32     void onDrawRegion(const SkRegion& region, const SkPaint& paint) override = 0;
33 
34     void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
35                         const SkPaint& paint) override = 0;
36 
37     void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
38                      const SkPoint texCoords[4], SkBlendMode mode,
39                      const SkPaint& paint) override = 0;
40     void onDrawPoints(SkCanvas::PointMode mode, size_t count, const SkPoint pts[],
41                       const SkPaint& paint) override = 0;
42     void onDrawVerticesObject(const SkVertices*, const SkVertices::Bone bones[], int boneCount,
43                               SkBlendMode, const SkPaint&) override = 0;
44 
45     void onDrawImage(const SkImage* image, SkScalar dx, SkScalar dy,
46                      const SkPaint* paint) override = 0;
47     void onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
48                          const SkPaint* paint, SkCanvas::SrcRectConstraint constraint) override = 0;
49     void onDrawImageNine(const SkImage* image, const SkIRect& center, const SkRect& dst,
50                          const SkPaint* paint) override = 0;
51     void onDrawImageLattice(const SkImage* image, const SkCanvas::Lattice& lattice,
52                             const SkRect& dst, const SkPaint* paint) override = 0;
53 
54 #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
55     // This is under active development for Chrome and not used in Android. Hold off on adding
56     // implementations in Android's SkCanvas subclasses until this stabilizes.
onDrawImageSet(const SkCanvas::ImageSetEntry[],int count,SkFilterQuality,SkBlendMode)57     void onDrawImageSet(const SkCanvas::ImageSetEntry[], int count, SkFilterQuality,
58                         SkBlendMode) override {};
onDrawEdgeAARect(const SkRect & rect,SkCanvas::QuadAAFlags edgeAA,SkColor color,SkBlendMode mode)59     void onDrawEdgeAARect(const SkRect& rect, SkCanvas::QuadAAFlags edgeAA, SkColor color,
60                           SkBlendMode mode) override {};
61 #else
62     void onDrawImageSet(const SkCanvas::ImageSetEntry[], int count, SkFilterQuality,
63                         SkBlendMode) override = 0;
64     void onDrawEdgeAARect(const SkRect& rect, SkCanvas::QuadAAFlags edgeAA, SkColor color,
65                           SkBlendMode mode) override = 0;
66 #endif
67 
68     void onDrawBitmap(const SkBitmap& bitmap, SkScalar dx, SkScalar dy,
69                       const SkPaint* paint) override = 0;
70     void onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst,
71                           const SkPaint* paint,
72                           SkCanvas::SrcRectConstraint constraint) override = 0;
73     void onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst,
74                           const SkPaint* paint) override = 0;
75     void onDrawBitmapLattice(const SkBitmap& bitmap, const SkCanvas::Lattice& lattice,
76                              const SkRect& dst, const SkPaint* paint) override = 0;
77 
78     void onDrawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect rect[],
79                      const SkColor colors[], int count, SkBlendMode mode, const SkRect* cull,
80                      const SkPaint* paint) override = 0;
81 
82     void onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) override = 0;
83     void onDrawShadowRec(const SkPath&, const SkDrawShadowRec&) override = 0;
84 
85     void onDrawDrawable(SkDrawable* drawable, const SkMatrix* matrix) override = 0;
86     void onDrawPicture(const SkPicture* picture, const SkMatrix* matrix,
87                        const SkPaint* paint) override = 0;
88 };
89 
90 #endif
91