epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 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 | */ |
tfarina@chromium.org | 6806fe8 | 2012-10-12 14:41:39 +0000 | [diff] [blame] | 7 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 8 | #ifndef SkLayerDrawLooper_DEFINED |
| 9 | #define SkLayerDrawLooper_DEFINED |
| 10 | |
| 11 | #include "SkDrawLooper.h" |
commit-bot@chromium.org | 5da3f22 | 2013-05-14 20:11:23 +0000 | [diff] [blame] | 12 | #include "SkPaint.h" |
| 13 | #include "SkPoint.h" |
Mike Reed | 71fecc3 | 2016-11-18 17:19:54 -0500 | [diff] [blame] | 14 | #include "SkBlendMode.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 15 | |
bsalomon@google.com | 8c3ff17 | 2011-04-15 15:42:24 +0000 | [diff] [blame] | 16 | class SK_API SkLayerDrawLooper : public SkDrawLooper { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 17 | public: |
Brian Salomon | d3b6597 | 2017-03-22 12:05:03 -0400 | [diff] [blame] | 18 | ~SkLayerDrawLooper() override; |
mike@reedtribe.org | 0e2810b | 2011-04-08 02:41:54 +0000 | [diff] [blame] | 19 | |
reed@google.com | 0716c63 | 2011-04-12 18:32:06 +0000 | [diff] [blame] | 20 | /** |
| 21 | * Bits specifies which aspects of the layer's paint should replace the |
| 22 | * corresponding aspects on the draw's paint. |
| 23 | * kEntirePaint_Bits means use the layer's paint completely. |
reed@google.com | 842292f | 2014-02-28 15:38:22 +0000 | [diff] [blame] | 24 | * 0 means ignore the layer's paint... except for fColorMode, which is |
| 25 | * always applied. |
reed@google.com | 0716c63 | 2011-04-12 18:32:06 +0000 | [diff] [blame] | 26 | */ |
mike@reedtribe.org | 0e2810b | 2011-04-08 02:41:54 +0000 | [diff] [blame] | 27 | enum Bits { |
reed@google.com | 0716c63 | 2011-04-12 18:32:06 +0000 | [diff] [blame] | 28 | kStyle_Bit = 1 << 0, //!< use this layer's Style/stroke settings |
| 29 | kTextSkewX_Bit = 1 << 1, //!< use this layer's textskewx |
| 30 | kPathEffect_Bit = 1 << 2, //!< use this layer's patheffect |
| 31 | kMaskFilter_Bit = 1 << 3, //!< use this layer's maskfilter |
| 32 | kShader_Bit = 1 << 4, //!< use this layer's shader |
| 33 | kColorFilter_Bit = 1 << 5, //!< use this layer's colorfilter |
| 34 | kXfermode_Bit = 1 << 6, //!< use this layer's xfermode |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 35 | |
reed@google.com | 8426058 | 2011-11-21 16:42:10 +0000 | [diff] [blame] | 36 | /** |
| 37 | * Use the layer's paint entirely, with these exceptions: |
| 38 | * - We never override the draw's paint's text_encoding, since that is |
| 39 | * used to interpret the text/len parameters in draw[Pos]Text. |
reed@google.com | 842292f | 2014-02-28 15:38:22 +0000 | [diff] [blame] | 40 | * - Color is always computed using the LayerInfo's fColorMode. |
reed@google.com | 8426058 | 2011-11-21 16:42:10 +0000 | [diff] [blame] | 41 | */ |
tomhudson@google.com | 1f90287 | 2012-06-01 13:15:47 +0000 | [diff] [blame] | 42 | kEntirePaint_Bits = -1 |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 43 | |
mike@reedtribe.org | 0e2810b | 2011-04-08 02:41:54 +0000 | [diff] [blame] | 44 | }; |
| 45 | typedef int32_t BitFlags; |
reed@google.com | 0716c63 | 2011-04-12 18:32:06 +0000 | [diff] [blame] | 46 | |
| 47 | /** |
| 48 | * Info for how to apply the layer's paint and offset. |
| 49 | * |
| 50 | * fColorMode controls how we compute the final color for the layer: |
| 51 | * The layer's paint's color is treated as the SRC |
| 52 | * The draw's paint's color is treated as the DST |
| 53 | * final-color = Mode(layers-color, draws-color); |
Mike Reed | 71fecc3 | 2016-11-18 17:19:54 -0500 | [diff] [blame] | 54 | * Any SkBlendMode will work. Two common choices are: |
| 55 | * kSrc: to use the layer's color, ignoring the draw's |
| 56 | * kDst: to just keep the draw's color, ignoring the layer's |
reed@google.com | 0716c63 | 2011-04-12 18:32:06 +0000 | [diff] [blame] | 57 | */ |
bsalomon@google.com | 8c3ff17 | 2011-04-15 15:42:24 +0000 | [diff] [blame] | 58 | struct SK_API LayerInfo { |
Mike Reed | faba371 | 2016-11-03 14:45:31 -0400 | [diff] [blame] | 59 | BitFlags fPaintBits; |
| 60 | SkBlendMode fColorMode; |
| 61 | SkVector fOffset; |
| 62 | bool fPostTranslate; //!< applies to fOffset |
reed@google.com | 0716c63 | 2011-04-12 18:32:06 +0000 | [diff] [blame] | 63 | |
| 64 | /** |
| 65 | * Initial the LayerInfo. Defaults to settings that will draw the |
| 66 | * layer with no changes: e.g. |
| 67 | * fPaintBits == 0 |
| 68 | * fColorMode == kDst_Mode |
| 69 | * fOffset == (0, 0) |
| 70 | */ |
| 71 | LayerInfo(); |
| 72 | }; |
| 73 | |
Herb Derby | 73fe7b0 | 2017-02-08 15:12:19 -0500 | [diff] [blame] | 74 | SkDrawLooper::Context* makeContext(SkCanvas*, SkArenaAlloc*) const override; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 75 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 76 | bool asABlurShadow(BlurShadowRec* rec) const override; |
reed@google.com | daaafa6 | 2014-04-29 15:20:16 +0000 | [diff] [blame] | 77 | |
commit-bot@chromium.org | 0f10f7b | 2014-03-13 18:02:17 +0000 | [diff] [blame] | 78 | SK_TO_STRING_OVERRIDE() |
commit-bot@chromium.org | 74ba2f6 | 2014-02-14 10:06:42 +0000 | [diff] [blame] | 79 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 80 | Factory getFactory() const override { return CreateProc; } |
reed | 60c9b58 | 2016-04-03 09:11:13 -0700 | [diff] [blame] | 81 | static sk_sp<SkFlattenable> CreateProc(SkReadBuffer& buffer); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 82 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 83 | protected: |
Matt Sarett | cdc651d | 2017-03-30 12:41:48 -0400 | [diff] [blame] | 84 | sk_sp<SkDrawLooper> onMakeColorSpace(SkColorSpaceXformer*) const override; |
| 85 | |
commit-bot@chromium.org | 73cb153 | 2014-04-15 15:48:36 +0000 | [diff] [blame] | 86 | SkLayerDrawLooper(); |
| 87 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 88 | void flatten(SkWriteBuffer&) const override; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 89 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 90 | private: |
| 91 | struct Rec { |
| 92 | Rec* fNext; |
| 93 | SkPaint fPaint; |
reed@google.com | 0716c63 | 2011-04-12 18:32:06 +0000 | [diff] [blame] | 94 | LayerInfo fInfo; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 95 | }; |
| 96 | Rec* fRecs; |
| 97 | int fCount; |
reed@google.com | 4e2b3d3 | 2011-04-07 14:18:59 +0000 | [diff] [blame] | 98 | |
| 99 | // state-machine during the init/next cycle |
commit-bot@chromium.org | 79fbb40 | 2014-03-12 09:42:01 +0000 | [diff] [blame] | 100 | class LayerDrawLooperContext : public SkDrawLooper::Context { |
| 101 | public: |
| 102 | explicit LayerDrawLooperContext(const SkLayerDrawLooper* looper); |
mike@reedtribe.org | 0e2810b | 2011-04-08 02:41:54 +0000 | [diff] [blame] | 103 | |
commit-bot@chromium.org | 79fbb40 | 2014-03-12 09:42:01 +0000 | [diff] [blame] | 104 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 105 | bool next(SkCanvas*, SkPaint* paint) override; |
commit-bot@chromium.org | 79fbb40 | 2014-03-12 09:42:01 +0000 | [diff] [blame] | 106 | |
| 107 | private: |
| 108 | Rec* fCurrRec; |
| 109 | |
| 110 | static void ApplyInfo(SkPaint* dst, const SkPaint& src, const LayerInfo&); |
| 111 | }; |
mike@reedtribe.org | 0e2810b | 2011-04-08 02:41:54 +0000 | [diff] [blame] | 112 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 113 | typedef SkDrawLooper INHERITED; |
commit-bot@chromium.org | 74ba2f6 | 2014-02-14 10:06:42 +0000 | [diff] [blame] | 114 | |
| 115 | public: |
| 116 | class SK_API Builder { |
| 117 | public: |
| 118 | Builder(); |
| 119 | ~Builder(); |
| 120 | |
| 121 | /** |
| 122 | * Call for each layer you want to add (from top to bottom). |
| 123 | * This returns a paint you can modify, but that ptr is only valid until |
| 124 | * the next call made to addLayer(). |
| 125 | */ |
| 126 | SkPaint* addLayer(const LayerInfo&); |
| 127 | |
| 128 | /** |
| 129 | * This layer will draw with the original paint, at the specified offset |
| 130 | */ |
| 131 | void addLayer(SkScalar dx, SkScalar dy); |
| 132 | |
| 133 | /** |
| 134 | * This layer will with the original paint and no offset. |
| 135 | */ |
| 136 | void addLayer() { this->addLayer(0, 0); } |
| 137 | |
| 138 | /// Similar to addLayer, but adds a layer to the top. |
| 139 | SkPaint* addLayerOnTop(const LayerInfo&); |
| 140 | |
| 141 | /** |
| 142 | * Pass list of layers on to newly built looper and return it. This will |
| 143 | * also reset the builder, so it can be used to build another looper. |
| 144 | */ |
reed | 7b380d0 | 2016-03-21 13:25:16 -0700 | [diff] [blame] | 145 | sk_sp<SkDrawLooper> detach(); |
commit-bot@chromium.org | 74ba2f6 | 2014-02-14 10:06:42 +0000 | [diff] [blame] | 146 | |
| 147 | private: |
| 148 | Rec* fRecs; |
| 149 | Rec* fTopRec; |
| 150 | int fCount; |
| 151 | }; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 152 | }; |
| 153 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 154 | #endif |