blob: c496caa5bb609a5e17dc5ee33fd09250b4d217a6 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2008 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkCanvas.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -04009
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkColorFilter.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkImage.h"
12#include "include/core/SkImageFilter.h"
13#include "include/core/SkPathEffect.h"
14#include "include/core/SkPicture.h"
15#include "include/core/SkRRect.h"
16#include "include/core/SkRasterHandleAllocator.h"
17#include "include/core/SkString.h"
18#include "include/core/SkTextBlob.h"
19#include "include/core/SkVertices.h"
Brian Osmanf11e3312020-03-24 14:57:38 -040020#include "include/effects/SkRuntimeEffect.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "include/private/SkNx.h"
22#include "include/private/SkTo.h"
23#include "include/utils/SkNoDrawCanvas.h"
Ben Wagner729a23f2019-05-17 16:29:34 -040024#include "src/core/SkArenaAlloc.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050025#include "src/core/SkBitmapDevice.h"
Mike Reed403c8072020-01-08 10:40:39 -050026#include "src/core/SkCanvasMatrix.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050027#include "src/core/SkCanvasPriv.h"
28#include "src/core/SkClipOpPriv.h"
29#include "src/core/SkClipStack.h"
30#include "src/core/SkDraw.h"
31#include "src/core/SkGlyphRun.h"
32#include "src/core/SkImageFilterCache.h"
Michael Ludwig8ee6cf32019-08-02 09:57:04 -040033#include "src/core/SkImageFilter_Base.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050034#include "src/core/SkLatticeIter.h"
35#include "src/core/SkMSAN.h"
Mike Reed07d32b42020-01-23 11:06:20 -050036#include "src/core/SkMatrixPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050037#include "src/core/SkMatrixUtils.h"
38#include "src/core/SkPaintPriv.h"
39#include "src/core/SkRasterClip.h"
40#include "src/core/SkSpecialImage.h"
41#include "src/core/SkStrikeCache.h"
42#include "src/core/SkTLazy.h"
43#include "src/core/SkTextFormatParams.h"
44#include "src/core/SkTraceEvent.h"
Mike Reedba962562020-03-12 20:33:21 -040045#include "src/core/SkVerticesPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050046#include "src/image/SkImage_Base.h"
47#include "src/image/SkSurface_Base.h"
48#include "src/utils/SkPatchUtils.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040049
bungemand3ebb482015-08-05 13:57:49 -070050#include <new>
reed@android.com8a1c16f2008-12-17 15:59:43 +000051
commit-bot@chromium.org644629c2013-11-21 06:21:58 +000052#if SK_SUPPORT_GPU
Mike Kleinc0bd9f92019-04-23 12:05:21 -050053#include "include/gpu/GrContext.h"
54#include "src/gpu/SkGr.h"
commit-bot@chromium.org644629c2013-11-21 06:21:58 +000055#endif
56
reede3b38ce2016-01-08 09:18:44 -080057#define RETURN_ON_NULL(ptr) do { if (nullptr == (ptr)) return; } while (0)
Mike Reed74d6e112018-01-23 13:06:12 -050058#define RETURN_ON_FALSE(pred) do { if (!(pred)) return; } while (0)
reede3b38ce2016-01-08 09:18:44 -080059
Mike Klein1bb7e232019-12-10 08:58:52 -060060// This is a test: static_assert with no message is a c++17 feature,
61// and std::max() is constexpr only since the c++14 stdlib.
62static_assert(std::max(3,4) == 4);
Brian Salomonb0047b52019-12-05 19:52:25 +000063
Mike Reed139e5e02017-03-08 11:29:33 -050064///////////////////////////////////////////////////////////////////////////////////////////////////
65
reedc83a2972015-07-16 07:40:45 -070066/*
67 * Return true if the drawing this rect would hit every pixels in the canvas.
68 *
69 * Returns false if
70 * - rect does not contain the canvas' bounds
71 * - paint is not fill
72 * - paint would blur or otherwise change the coverage of the rect
73 */
74bool SkCanvas::wouldOverwriteEntireSurface(const SkRect* rect, const SkPaint* paint,
75 ShaderOverrideOpacity overrideOpacity) const {
bungeman99fe8222015-08-20 07:57:51 -070076 static_assert((int)SkPaintPriv::kNone_ShaderOverrideOpacity ==
77 (int)kNone_ShaderOverrideOpacity,
78 "need_matching_enums0");
79 static_assert((int)SkPaintPriv::kOpaque_ShaderOverrideOpacity ==
80 (int)kOpaque_ShaderOverrideOpacity,
81 "need_matching_enums1");
82 static_assert((int)SkPaintPriv::kNotOpaque_ShaderOverrideOpacity ==
83 (int)kNotOpaque_ShaderOverrideOpacity,
84 "need_matching_enums2");
reedc83a2972015-07-16 07:40:45 -070085
86 const SkISize size = this->getBaseLayerSize();
87 const SkRect bounds = SkRect::MakeIWH(size.width(), size.height());
Mike Reeda1361362017-03-07 09:37:29 -050088
89 // if we're clipped at all, we can't overwrite the entire surface
90 {
91 SkBaseDevice* base = this->getDevice();
92 SkBaseDevice* top = this->getTopDevice();
93 if (base != top) {
94 return false; // we're in a saveLayer, so conservatively don't assume we'll overwrite
95 }
96 if (!base->clipIsWideOpen()) {
97 return false;
98 }
reedc83a2972015-07-16 07:40:45 -070099 }
100
101 if (rect) {
halcanaryc5769b22016-08-10 07:13:21 -0700102 if (!this->getTotalMatrix().isScaleTranslate()) {
reedc83a2972015-07-16 07:40:45 -0700103 return false; // conservative
104 }
halcanaryc5769b22016-08-10 07:13:21 -0700105
106 SkRect devRect;
107 this->getTotalMatrix().mapRectScaleTranslate(&devRect, *rect);
108 if (!devRect.contains(bounds)) {
reedc83a2972015-07-16 07:40:45 -0700109 return false;
110 }
111 }
112
113 if (paint) {
114 SkPaint::Style paintStyle = paint->getStyle();
115 if (!(paintStyle == SkPaint::kFill_Style ||
116 paintStyle == SkPaint::kStrokeAndFill_Style)) {
117 return false;
118 }
Mike Reed9dc0b9e2019-07-29 17:52:48 -0400119 if (paint->getMaskFilter() || paint->getPathEffect() || paint->getImageFilter()) {
reedc83a2972015-07-16 07:40:45 -0700120 return false; // conservative
121 }
122 }
123 return SkPaintPriv::Overwrites(paint, (SkPaintPriv::ShaderOverrideOpacity)overrideOpacity);
124}
125
126///////////////////////////////////////////////////////////////////////////////////////////////////
127
reed@google.comda17f752012-08-16 18:27:05 +0000128// experimental for faster tiled drawing...
reed@android.com8a1c16f2008-12-17 15:59:43 +0000129//#define SK_TRACE_SAVERESTORE
130
131#ifdef SK_TRACE_SAVERESTORE
132 static int gLayerCounter;
133 static void inc_layer() { ++gLayerCounter; printf("----- inc layer %d\n", gLayerCounter); }
134 static void dec_layer() { --gLayerCounter; printf("----- dec layer %d\n", gLayerCounter); }
135
136 static int gRecCounter;
137 static void inc_rec() { ++gRecCounter; printf("----- inc rec %d\n", gRecCounter); }
138 static void dec_rec() { --gRecCounter; printf("----- dec rec %d\n", gRecCounter); }
139
140 static int gCanvasCounter;
141 static void inc_canvas() { ++gCanvasCounter; printf("----- inc canvas %d\n", gCanvasCounter); }
142 static void dec_canvas() { --gCanvasCounter; printf("----- dec canvas %d\n", gCanvasCounter); }
143#else
144 #define inc_layer()
145 #define dec_layer()
146 #define inc_rec()
147 #define dec_rec()
148 #define inc_canvas()
149 #define dec_canvas()
150#endif
151
mike@reedtribe.org2c8fc5a2011-04-10 00:35:29 +0000152typedef SkTLazy<SkPaint> SkLazyPaint;
153
reedc83a2972015-07-16 07:40:45 -0700154void SkCanvas::predrawNotify(bool willOverwritesEntireSurface) {
reed@google.com97af1a62012-08-28 12:19:02 +0000155 if (fSurfaceBase) {
reedc83a2972015-07-16 07:40:45 -0700156 fSurfaceBase->aboutToDraw(willOverwritesEntireSurface
157 ? SkSurface::kDiscard_ContentChangeMode
158 : SkSurface::kRetain_ContentChangeMode);
159 }
160}
161
162void SkCanvas::predrawNotify(const SkRect* rect, const SkPaint* paint,
163 ShaderOverrideOpacity overrideOpacity) {
164 if (fSurfaceBase) {
165 SkSurface::ContentChangeMode mode = SkSurface::kRetain_ContentChangeMode;
166 // Since willOverwriteAllPixels() may not be complete free to call, we only do so if
167 // there is an outstanding snapshot, since w/o that, there will be no copy-on-write
168 // and therefore we don't care which mode we're in.
169 //
170 if (fSurfaceBase->outstandingImageSnapshot()) {
171 if (this->wouldOverwriteEntireSurface(rect, paint, overrideOpacity)) {
172 mode = SkSurface::kDiscard_ContentChangeMode;
173 }
174 }
175 fSurfaceBase->aboutToDraw(mode);
reed@google.com97af1a62012-08-28 12:19:02 +0000176 }
177}
178
reed@android.com8a1c16f2008-12-17 15:59:43 +0000179///////////////////////////////////////////////////////////////////////////////
reed@android.com8a1c16f2008-12-17 15:59:43 +0000180
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000181/* This is the record we keep for each SkBaseDevice that the user installs.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000182 The clip/matrix/proc are fields that reflect the top of the save/restore
183 stack. Whenever the canvas changes, it marks a dirty flag, and then before
184 these are used (assuming we're not on a layer) we rebuild these cache
185 values: they reflect the top of the save stack, but translated and clipped
186 by the device's XY offset and bitmap-bounds.
187*/
188struct DeviceCM {
Florin Malita713b8ef2017-04-28 10:57:24 -0400189 DeviceCM* fNext;
190 sk_sp<SkBaseDevice> fDevice;
191 SkRasterClip fClip;
192 std::unique_ptr<const SkPaint> fPaint; // may be null (in the future)
193 SkMatrix fStashedMatrix; // original CTM; used by imagefilter in saveLayer
Florin Malita53f77bd2017-04-28 13:48:37 -0400194 sk_sp<SkImage> fClipImage;
195 SkMatrix fClipMatrix;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000196
Florin Malita53f77bd2017-04-28 13:48:37 -0400197 DeviceCM(sk_sp<SkBaseDevice> device, const SkPaint* paint, const SkMatrix& stashed,
Mike Kleinb34ab042017-05-01 21:34:14 +0000198 const SkImage* clipImage, const SkMatrix* clipMatrix)
halcanary96fcdcc2015-08-27 07:41:13 -0700199 : fNext(nullptr)
Florin Malita713b8ef2017-04-28 10:57:24 -0400200 , fDevice(std::move(device))
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500201 , fPaint(paint ? std::make_unique<SkPaint>(*paint) : nullptr)
reed8c30a812016-04-20 16:36:51 -0700202 , fStashedMatrix(stashed)
Mike Kleinb34ab042017-05-01 21:34:14 +0000203 , fClipImage(sk_ref_sp(const_cast<SkImage*>(clipImage)))
Florin Malita53f77bd2017-04-28 13:48:37 -0400204 , fClipMatrix(clipMatrix ? *clipMatrix : SkMatrix::I())
Florin Malita713b8ef2017-04-28 10:57:24 -0400205 {}
reed@google.com4b226022011-01-11 18:32:13 +0000206
mtkleinfeaadee2015-04-08 11:25:48 -0700207 void reset(const SkIRect& bounds) {
208 SkASSERT(!fPaint);
209 SkASSERT(!fNext);
210 SkASSERT(fDevice);
211 fClip.setRect(bounds);
212 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000213};
214
Mike Reed148b7fd2018-12-18 17:38:18 -0500215namespace {
216// Encapsulate state needed to restore from saveBehind()
217struct BackImage {
218 sk_sp<SkSpecialImage> fImage;
219 SkIPoint fLoc;
220};
221}
222
reed@android.com8a1c16f2008-12-17 15:59:43 +0000223/* This is the record we keep for each save/restore level in the stack.
224 Since a level optionally copies the matrix and/or stack, we have pointers
225 for these fields. If the value is copied for this level, the copy is
226 stored in the ...Storage field, and the pointer points to that. If the
227 value is not copied for this level, we ignore ...Storage, and just point
228 at the corresponding value in the previous level in the stack.
229*/
230class SkCanvas::MCRec {
231public:
Mike Reed148b7fd2018-12-18 17:38:18 -0500232 DeviceCM* fLayer;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000233 /* If there are any layers in the stack, this points to the top-most
234 one that is at or below this level in the stack (so we know what
235 bitmap/device to draw into from this level. This value is NOT
236 reference counted, since the real owner is either our fLayer field,
237 or a previous one in a lower level.)
238 */
Mike Reed148b7fd2018-12-18 17:38:18 -0500239 DeviceCM* fTopLayer;
240 std::unique_ptr<BackImage> fBackImage;
241 SkConservativeClip fRasterClip;
Mike Reed403c8072020-01-08 10:40:39 -0500242 SkCanvasMatrix fMatrix;
Mike Reed148b7fd2018-12-18 17:38:18 -0500243 int fDeferredSaveCount;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000244
Mike Reeda1361362017-03-07 09:37:29 -0500245 MCRec() {
halcanary96fcdcc2015-08-27 07:41:13 -0700246 fLayer = nullptr;
247 fTopLayer = nullptr;
reed2ff1fce2014-12-11 07:07:37 -0800248 fMatrix.reset();
249 fDeferredSaveCount = 0;
piotaixrb5fae932014-09-24 13:03:30 -0700250
reedd9544982014-09-09 18:46:22 -0700251 // don't bother initializing fNext
252 inc_rec();
253 }
Jim Van Verth343fe492017-05-02 16:49:24 -0400254 MCRec(const MCRec& prev) : fRasterClip(prev.fRasterClip), fMatrix(prev.fMatrix) {
halcanary96fcdcc2015-08-27 07:41:13 -0700255 fLayer = nullptr;
reedd9544982014-09-09 18:46:22 -0700256 fTopLayer = prev.fTopLayer;
reed2ff1fce2014-12-11 07:07:37 -0800257 fDeferredSaveCount = 0;
piotaixrb5fae932014-09-24 13:03:30 -0700258
reed@android.com8a1c16f2008-12-17 15:59:43 +0000259 // don't bother initializing fNext
260 inc_rec();
261 }
262 ~MCRec() {
halcanary385fe4d2015-08-26 13:07:48 -0700263 delete fLayer;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000264 dec_rec();
265 }
mtkleinfeaadee2015-04-08 11:25:48 -0700266
267 void reset(const SkIRect& bounds) {
268 SkASSERT(fLayer);
269 SkASSERT(fDeferredSaveCount == 0);
270
271 fMatrix.reset();
272 fRasterClip.setRect(bounds);
273 fLayer->reset(bounds);
274 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000275};
276
Mike Reeda1361362017-03-07 09:37:29 -0500277class SkDrawIter {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000278public:
Mike Reeda1361362017-03-07 09:37:29 -0500279 SkDrawIter(SkCanvas* canvas)
280 : fDevice(nullptr), fCurrLayer(canvas->fMCRec->fTopLayer), fPaint(nullptr)
281 {}
reed@google.com4b226022011-01-11 18:32:13 +0000282
reed@android.com8a1c16f2008-12-17 15:59:43 +0000283 bool next() {
reed@google.comf68c5e22012-02-24 16:38:58 +0000284 const DeviceCM* rec = fCurrLayer;
285 if (rec && rec->fDevice) {
Florin Malita713b8ef2017-04-28 10:57:24 -0400286 fDevice = rec->fDevice.get();
287 fPaint = rec->fPaint.get();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000288 fCurrLayer = rec->fNext;
halcanary96fcdcc2015-08-27 07:41:13 -0700289 // fCurrLayer may be nullptr now
reed@android.com8a1c16f2008-12-17 15:59:43 +0000290 return true;
291 }
292 return false;
293 }
reed@google.com4b226022011-01-11 18:32:13 +0000294
reed@android.com8a1c16f2008-12-17 15:59:43 +0000295 const SkPaint* getPaint() const { return fPaint; }
reed@google.com6f8f2922011-03-04 22:27:10 +0000296
Mike Reed99330ba2017-02-22 11:01:08 -0500297 SkBaseDevice* fDevice;
298
reed@android.com8a1c16f2008-12-17 15:59:43 +0000299private:
reed@android.com8a1c16f2008-12-17 15:59:43 +0000300 const DeviceCM* fCurrLayer;
301 const SkPaint* fPaint; // May be null.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000302};
303
Florin Malita713b8ef2017-04-28 10:57:24 -0400304#define FOR_EACH_TOP_DEVICE( code ) \
305 do { \
306 DeviceCM* layer = fMCRec->fTopLayer; \
307 while (layer) { \
308 SkBaseDevice* device = layer->fDevice.get(); \
309 if (device) { \
310 code; \
311 } \
312 layer = layer->fNext; \
313 } \
Mike Reed7627fa52017-02-08 10:07:53 -0500314 } while (0)
315
reed@android.com8a1c16f2008-12-17 15:59:43 +0000316/////////////////////////////////////////////////////////////////////////////
317
reeddbc3cef2015-04-29 12:18:57 -0700318/**
319 * If the paint has an imagefilter, but it can be simplified to just a colorfilter, return that
halcanary96fcdcc2015-08-27 07:41:13 -0700320 * colorfilter, else return nullptr.
reeddbc3cef2015-04-29 12:18:57 -0700321 */
reedd053ce92016-03-22 10:17:23 -0700322static sk_sp<SkColorFilter> image_to_color_filter(const SkPaint& paint) {
reeddbc3cef2015-04-29 12:18:57 -0700323 SkImageFilter* imgf = paint.getImageFilter();
324 if (!imgf) {
halcanary96fcdcc2015-08-27 07:41:13 -0700325 return nullptr;
reeddbc3cef2015-04-29 12:18:57 -0700326 }
327
reedd053ce92016-03-22 10:17:23 -0700328 SkColorFilter* imgCFPtr;
329 if (!imgf->asAColorFilter(&imgCFPtr)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700330 return nullptr;
reeddbc3cef2015-04-29 12:18:57 -0700331 }
reedd053ce92016-03-22 10:17:23 -0700332 sk_sp<SkColorFilter> imgCF(imgCFPtr);
reeddbc3cef2015-04-29 12:18:57 -0700333
334 SkColorFilter* paintCF = paint.getColorFilter();
halcanary96fcdcc2015-08-27 07:41:13 -0700335 if (nullptr == paintCF) {
reeddbc3cef2015-04-29 12:18:57 -0700336 // there is no existing paint colorfilter, so we can just return the imagefilter's
337 return imgCF;
338 }
339
340 // The paint has both a colorfilter(paintCF) and an imagefilter-which-is-a-colorfilter(imgCF)
341 // and we need to combine them into a single colorfilter.
Mike Reed19d7bd62018-02-19 14:10:57 -0500342 return imgCF->makeComposed(sk_ref_sp(paintCF));
reeddbc3cef2015-04-29 12:18:57 -0700343}
344
senorblanco87e066e2015-10-28 11:23:36 -0700345/**
346 * There are many bounds in skia. A circle's bounds is just its center extended by its radius.
347 * However, if we stroke a circle, then the "bounds" of that is larger, since it will now draw
348 * outside of its raw-bounds by 1/2 the stroke width. SkPaint has lots of optional
349 * effects/attributes that can modify the effective bounds of a given primitive -- maskfilters,
350 * patheffects, stroking, etc. This function takes a raw bounds and a paint, and returns the
351 * conservative "effective" bounds based on the settings in the paint... with one exception. This
352 * function does *not* look at the imagefilter, which can also modify the effective bounds. It is
353 * deliberately ignored.
354 */
355static const SkRect& apply_paint_to_bounds_sans_imagefilter(const SkPaint& paint,
356 const SkRect& rawBounds,
357 SkRect* storage) {
358 SkPaint tmpUnfiltered(paint);
359 tmpUnfiltered.setImageFilter(nullptr);
360 if (tmpUnfiltered.canComputeFastBounds()) {
361 return tmpUnfiltered.computeFastBounds(rawBounds, storage);
362 } else {
363 return rawBounds;
364 }
365}
366
Mike Reed38992392019-07-30 10:48:15 -0400367class AutoLayerForImageFilter {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000368public:
senorblanco87e066e2015-10-28 11:23:36 -0700369 // "rawBounds" is the original bounds of the primitive about to be drawn, unmodified by the
370 // paint. It's used to determine the size of the offscreen layer for filters.
371 // If null, the clip will be used instead.
Mike Reed38992392019-07-30 10:48:15 -0400372 AutoLayerForImageFilter(SkCanvas* canvas, const SkPaint& origPaint,
373 bool skipLayerForImageFilter = false,
374 const SkRect* rawBounds = nullptr) {
reed@google.com4e2b3d32011-04-07 14:18:59 +0000375 fCanvas = canvas;
Mike Reed38992392019-07-30 10:48:15 -0400376 fPaint = &origPaint;
reed@google.com4e2b3d32011-04-07 14:18:59 +0000377 fSaveCount = canvas->getSaveCount();
reed5c476fb2015-04-20 08:04:21 -0700378 fTempLayerForImageFilter = false;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000379
Mike Reed38992392019-07-30 10:48:15 -0400380 if (auto simplifiedCF = image_to_color_filter(origPaint)) {
381 SkASSERT(!fLazyPaint.isValid());
382 SkPaint* paint = fLazyPaint.set(origPaint);
reedd053ce92016-03-22 10:17:23 -0700383 paint->setColorFilter(std::move(simplifiedCF));
halcanary96fcdcc2015-08-27 07:41:13 -0700384 paint->setImageFilter(nullptr);
reeddbc3cef2015-04-29 12:18:57 -0700385 fPaint = paint;
386 }
387
388 if (!skipLayerForImageFilter && fPaint->getImageFilter()) {
reed5c476fb2015-04-20 08:04:21 -0700389 /**
390 * We implement ImageFilters for a given draw by creating a layer, then applying the
391 * imagefilter to the pixels of that layer (its backing surface/image), and then
392 * we call restore() to xfer that layer to the main canvas.
393 *
394 * 1. SaveLayer (with a paint containing the current imagefilter and xfermode)
395 * 2. Generate the src pixels:
396 * Remove the imagefilter and the xfermode from the paint that we (AutoDrawLooper)
397 * return (fPaint). We then draw the primitive (using srcover) into a cleared
398 * buffer/surface.
399 * 3. Restore the layer created in #1
400 * The imagefilter is passed the buffer/surface from the layer (now filled with the
401 * src pixels of the primitive). It returns a new "filtered" buffer, which we
402 * draw onto the previous layer using the xfermode from the original paint.
403 */
Mike Reed38992392019-07-30 10:48:15 -0400404
405 SkPaint restorePaint;
406 restorePaint.setImageFilter(fPaint->refImageFilter());
407 restorePaint.setBlendMode(fPaint->getBlendMode());
408
senorblanco87e066e2015-10-28 11:23:36 -0700409 SkRect storage;
410 if (rawBounds) {
411 // Make rawBounds include all paint outsets except for those due to image filters.
412 rawBounds = &apply_paint_to_bounds_sans_imagefilter(*fPaint, *rawBounds, &storage);
413 }
Mike Reed38992392019-07-30 10:48:15 -0400414 (void)canvas->internalSaveLayer(SkCanvas::SaveLayerRec(rawBounds, &restorePaint),
reed76033be2015-03-14 10:54:31 -0700415 SkCanvas::kFullLayer_SaveLayerStrategy);
reed5c476fb2015-04-20 08:04:21 -0700416 fTempLayerForImageFilter = true;
reed@google.com8926b162012-03-23 15:36:36 +0000417
Mike Reed38992392019-07-30 10:48:15 -0400418 // Remove the restorePaint fields from our "working" paint
419 SkASSERT(!fLazyPaint.isValid());
420 SkPaint* paint = fLazyPaint.set(origPaint);
421 paint->setImageFilter(nullptr);
422 paint->setBlendMode(SkBlendMode::kSrcOver);
423 fPaint = paint;
reed@google.com4e2b3d32011-04-07 14:18:59 +0000424 }
425 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000426
Mike Reed38992392019-07-30 10:48:15 -0400427 ~AutoLayerForImageFilter() {
reed5c476fb2015-04-20 08:04:21 -0700428 if (fTempLayerForImageFilter) {
reed@google.com8926b162012-03-23 15:36:36 +0000429 fCanvas->internalRestore();
430 }
reed@google.com4e2b3d32011-04-07 14:18:59 +0000431 SkASSERT(fCanvas->getSaveCount() == fSaveCount);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000432 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000433
reed@google.com4e2b3d32011-04-07 14:18:59 +0000434 const SkPaint& paint() const {
435 SkASSERT(fPaint);
436 return *fPaint;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000437 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000438
reed@android.com8a1c16f2008-12-17 15:59:43 +0000439private:
Mike Reed38992392019-07-30 10:48:15 -0400440 SkLazyPaint fLazyPaint; // base paint storage in case we need to modify it
mike@reedtribe.org2c8fc5a2011-04-10 00:35:29 +0000441 SkCanvas* fCanvas;
Mike Reed38992392019-07-30 10:48:15 -0400442 const SkPaint* fPaint; // points to either the original paint, or lazy (if we needed it)
mike@reedtribe.org2c8fc5a2011-04-10 00:35:29 +0000443 int fSaveCount;
reed5c476fb2015-04-20 08:04:21 -0700444 bool fTempLayerForImageFilter;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000445};
446
reed@android.com8a1c16f2008-12-17 15:59:43 +0000447////////// macros to place around the internal draw calls //////////////////
448
Mike Reed38992392019-07-30 10:48:15 -0400449#define DRAW_BEGIN_DRAWBITMAP(paint, skipLayerForFilter, bounds) \
reed3aafe112016-08-18 12:45:34 -0700450 this->predrawNotify(); \
Mike Reed38992392019-07-30 10:48:15 -0400451 AutoLayerForImageFilter draw(this, paint, skipLayerForFilter, bounds); \
452 { SkDrawIter iter(this);
reed262a71b2015-12-05 13:07:27 -0800453
454
Mike Reed38992392019-07-30 10:48:15 -0400455#define DRAW_BEGIN_DRAWDEVICE(paint) \
reed@google.com97af1a62012-08-28 12:19:02 +0000456 this->predrawNotify(); \
Mike Reed38992392019-07-30 10:48:15 -0400457 AutoLayerForImageFilter draw(this, paint, true); \
458 { SkDrawIter iter(this);
reed@google.com8926b162012-03-23 15:36:36 +0000459
Mike Reed38992392019-07-30 10:48:15 -0400460#define DRAW_BEGIN(paint, bounds) \
reed@google.com97af1a62012-08-28 12:19:02 +0000461 this->predrawNotify(); \
Mike Reed38992392019-07-30 10:48:15 -0400462 AutoLayerForImageFilter draw(this, paint, false, bounds); \
463 { SkDrawIter iter(this);
reed@google.com4b226022011-01-11 18:32:13 +0000464
Mike Reed38992392019-07-30 10:48:15 -0400465#define DRAW_BEGIN_CHECK_COMPLETE_OVERWRITE(paint, bounds, auxOpaque) \
reedc83a2972015-07-16 07:40:45 -0700466 this->predrawNotify(bounds, &paint, auxOpaque); \
Mike Reed38992392019-07-30 10:48:15 -0400467 AutoLayerForImageFilter draw(this, paint, false, bounds); \
468 { SkDrawIter iter(this);
reedc83a2972015-07-16 07:40:45 -0700469
Mike Reed38992392019-07-30 10:48:15 -0400470#define DRAW_END }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000471
472////////////////////////////////////////////////////////////////////////////
473
msarettfbfa2582016-08-12 08:29:08 -0700474static inline SkRect qr_clip_bounds(const SkIRect& bounds) {
475 if (bounds.isEmpty()) {
476 return SkRect::MakeEmpty();
477 }
478
479 // Expand bounds out by 1 in case we are anti-aliasing. We store the
480 // bounds as floats to enable a faster quick reject implementation.
481 SkRect dst;
482 SkNx_cast<float>(Sk4i::Load(&bounds.fLeft) + Sk4i(-1,-1,1,1)).store(&dst.fLeft);
483 return dst;
484}
485
mtkleinfeaadee2015-04-08 11:25:48 -0700486void SkCanvas::resetForNextPicture(const SkIRect& bounds) {
487 this->restoreToCount(1);
mtkleinfeaadee2015-04-08 11:25:48 -0700488 fMCRec->reset(bounds);
489
490 // We're peering through a lot of structs here. Only at this scope do we
Mike Reed139e5e02017-03-08 11:29:33 -0500491 // know that the device is a SkNoPixelsDevice.
Florin Malita713b8ef2017-04-28 10:57:24 -0400492 static_cast<SkNoPixelsDevice*>(fMCRec->fLayer->fDevice.get())->resetForNextPicture(bounds);
msarettfbfa2582016-08-12 08:29:08 -0700493 fDeviceClipBounds = qr_clip_bounds(bounds);
msarett9637ea92016-08-18 14:03:30 -0700494 fIsScaleTranslate = true;
mtkleinfeaadee2015-04-08 11:25:48 -0700495}
496
Hal Canary363a3f82018-10-04 11:04:48 -0400497void SkCanvas::init(sk_sp<SkBaseDevice> device) {
reed2ff1fce2014-12-11 07:07:37 -0800498 fSaveCount = 1;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000499
500 fMCRec = (MCRec*)fMCStack.push_back();
Mike Reeda1361362017-03-07 09:37:29 -0500501 new (fMCRec) MCRec;
Stan Iliev5f1bb0a2016-12-12 17:39:55 -0500502 fMCRec->fRasterClip.setDeviceClipRestriction(&fClipRestrictionRect);
msarett9637ea92016-08-18 14:03:30 -0700503 fIsScaleTranslate = true;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000504
reeda499f902015-05-01 09:34:31 -0700505 SkASSERT(sizeof(DeviceCM) <= sizeof(fDeviceCMStorage));
506 fMCRec->fLayer = (DeviceCM*)fDeviceCMStorage;
Herb Derbyefe39bc2018-05-01 17:06:20 -0400507 new (fDeviceCMStorage) DeviceCM(device, nullptr, fMCRec->fMatrix, nullptr, nullptr);
reedb679ca82015-04-07 04:40:48 -0700508
reed@android.com8a1c16f2008-12-17 15:59:43 +0000509 fMCRec->fTopLayer = fMCRec->fLayer;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000510
halcanary96fcdcc2015-08-27 07:41:13 -0700511 fSurfaceBase = nullptr;
reed@android.comf2b98d62010-12-20 18:26:13 +0000512
reedf92c8662014-08-18 08:02:43 -0700513 if (device) {
robertphillipsefbffed2015-06-22 12:06:08 -0700514 // The root device and the canvas should always have the same pixel geometry
515 SkASSERT(fProps.pixelGeometry() == device->surfaceProps().pixelGeometry());
reed78e27682014-11-19 08:04:34 -0800516 fMCRec->fRasterClip.setRect(device->getGlobalBounds());
msarettfbfa2582016-08-12 08:29:08 -0700517 fDeviceClipBounds = qr_clip_bounds(device->getGlobalBounds());
Mike Reedc42a1cd2017-02-14 14:25:14 -0500518
Mike Reedc42a1cd2017-02-14 14:25:14 -0500519 device->androidFramework_setDeviceClipRestriction(&fClipRestrictionRect);
reedf92c8662014-08-18 08:02:43 -0700520 }
Herb Derby4ffa0272018-06-04 15:49:15 -0400521
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500522 fScratchGlyphRunBuilder = std::make_unique<SkGlyphRunBuilder>();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000523}
524
reed@google.comcde92112011-07-06 20:00:52 +0000525SkCanvas::SkCanvas()
commit-bot@chromium.orge2543102014-01-31 19:42:58 +0000526 : fMCStack(sizeof(MCRec), fMCRecStorage, sizeof(fMCRecStorage))
reed4a8126e2014-09-22 07:29:03 -0700527 , fProps(SkSurfaceProps::kLegacyFontHost_InitType)
commit-bot@chromium.orge2543102014-01-31 19:42:58 +0000528{
vandebo@chromium.org8d84fac2010-10-13 22:13:05 +0000529 inc_canvas();
skia.committer@gmail.comba124482014-02-01 03:01:57 +0000530
Hal Canary363a3f82018-10-04 11:04:48 -0400531 this->init(nullptr);
vandebo@chromium.org8d84fac2010-10-13 22:13:05 +0000532}
533
reed96a857e2015-01-25 10:33:58 -0800534SkCanvas::SkCanvas(int width, int height, const SkSurfaceProps* props)
commit-bot@chromium.orge2543102014-01-31 19:42:58 +0000535 : fMCStack(sizeof(MCRec), fMCRecStorage, sizeof(fMCRecStorage))
reed96a857e2015-01-25 10:33:58 -0800536 , fProps(SkSurfacePropsCopyOrDefault(props))
commit-bot@chromium.orge2543102014-01-31 19:42:58 +0000537{
538 inc_canvas();
Herb Derbyefe39bc2018-05-01 17:06:20 -0400539 this->init(sk_make_sp<SkNoPixelsDevice>(
Brian Osman788b9162020-02-07 10:36:46 -0500540 SkIRect::MakeWH(std::max(width, 0), std::max(height, 0)), fProps));
reedd9544982014-09-09 18:46:22 -0700541}
skia.committer@gmail.comba124482014-02-01 03:01:57 +0000542
Hal Canary363a3f82018-10-04 11:04:48 -0400543SkCanvas::SkCanvas(const SkIRect& bounds)
reedd9544982014-09-09 18:46:22 -0700544 : fMCStack(sizeof(MCRec), fMCRecStorage, sizeof(fMCRecStorage))
reed4a8126e2014-09-22 07:29:03 -0700545 , fProps(SkSurfaceProps::kLegacyFontHost_InitType)
reedd9544982014-09-09 18:46:22 -0700546{
547 inc_canvas();
piotaixrb5fae932014-09-24 13:03:30 -0700548
Mike Reed566e53c2017-03-10 10:49:45 -0500549 SkIRect r = bounds.isEmpty() ? SkIRect::MakeEmpty() : bounds;
Hal Canary363a3f82018-10-04 11:04:48 -0400550 this->init(sk_make_sp<SkNoPixelsDevice>(r, fProps));
reedd9544982014-09-09 18:46:22 -0700551}
552
Herb Derbyefe39bc2018-05-01 17:06:20 -0400553SkCanvas::SkCanvas(sk_sp<SkBaseDevice> device)
commit-bot@chromium.orge2543102014-01-31 19:42:58 +0000554 : fMCStack(sizeof(MCRec), fMCRecStorage, sizeof(fMCRecStorage))
robertphillips7b05ff12015-06-19 14:14:54 -0700555 , fProps(device->surfaceProps())
commit-bot@chromium.orge2543102014-01-31 19:42:58 +0000556{
reed@android.com8a1c16f2008-12-17 15:59:43 +0000557 inc_canvas();
piotaixrb5fae932014-09-24 13:03:30 -0700558
Hal Canary363a3f82018-10-04 11:04:48 -0400559 this->init(device);
robertphillipsfcf78292015-06-19 11:49:52 -0700560}
561
reed4a8126e2014-09-22 07:29:03 -0700562SkCanvas::SkCanvas(const SkBitmap& bitmap, const SkSurfaceProps& props)
reed3716fd02014-09-21 09:39:55 -0700563 : fMCStack(sizeof(MCRec), fMCRecStorage, sizeof(fMCRecStorage))
reed4a8126e2014-09-22 07:29:03 -0700564 , fProps(props)
reed3716fd02014-09-21 09:39:55 -0700565{
566 inc_canvas();
piotaixrb5fae932014-09-24 13:03:30 -0700567
Mike Reed910ca0f2018-04-25 13:04:05 -0400568 sk_sp<SkBaseDevice> device(new SkBitmapDevice(bitmap, fProps, nullptr, nullptr));
Hal Canary363a3f82018-10-04 11:04:48 -0400569 this->init(device);
reed4a8126e2014-09-22 07:29:03 -0700570}
reed29c857d2014-09-21 10:25:07 -0700571
Mike Reed356f7c22017-01-10 11:58:39 -0500572SkCanvas::SkCanvas(const SkBitmap& bitmap, std::unique_ptr<SkRasterHandleAllocator> alloc,
573 SkRasterHandleAllocator::Handle hndl)
reed4a8126e2014-09-22 07:29:03 -0700574 : fMCStack(sizeof(MCRec), fMCRecStorage, sizeof(fMCRecStorage))
575 , fProps(SkSurfaceProps::kLegacyFontHost_InitType)
Mike Reed356f7c22017-01-10 11:58:39 -0500576 , fAllocator(std::move(alloc))
reed4a8126e2014-09-22 07:29:03 -0700577{
578 inc_canvas();
piotaixrb5fae932014-09-24 13:03:30 -0700579
Mike Reed910ca0f2018-04-25 13:04:05 -0400580 sk_sp<SkBaseDevice> device(new SkBitmapDevice(bitmap, fProps, hndl, nullptr));
Hal Canary363a3f82018-10-04 11:04:48 -0400581 this->init(device);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000582}
583
Mike Reed356f7c22017-01-10 11:58:39 -0500584SkCanvas::SkCanvas(const SkBitmap& bitmap) : SkCanvas(bitmap, nullptr, nullptr) {}
585
Matt Sarett31f99ce2017-04-11 08:46:01 -0400586#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
587SkCanvas::SkCanvas(const SkBitmap& bitmap, ColorBehavior)
588 : fMCStack(sizeof(MCRec), fMCRecStorage, sizeof(fMCRecStorage))
589 , fProps(SkSurfaceProps::kLegacyFontHost_InitType)
590 , fAllocator(nullptr)
591{
592 inc_canvas();
593
594 SkBitmap tmp(bitmap);
595 *const_cast<SkImageInfo*>(&tmp.info()) = tmp.info().makeColorSpace(nullptr);
Mike Reedc247a4e2018-04-25 15:40:09 -0400596 sk_sp<SkBaseDevice> device(new SkBitmapDevice(tmp, fProps, nullptr, nullptr));
Hal Canary363a3f82018-10-04 11:04:48 -0400597 this->init(device);
Matt Sarett31f99ce2017-04-11 08:46:01 -0400598}
599#endif
600
reed@android.com8a1c16f2008-12-17 15:59:43 +0000601SkCanvas::~SkCanvas() {
602 // free up the contents of our deque
603 this->restoreToCount(1); // restore everything but the last
reed@google.com7c202932011-12-14 18:48:05 +0000604
reed@android.com8a1c16f2008-12-17 15:59:43 +0000605 this->internalRestore(); // restore the last, since we're going away
606
reed@android.com8a1c16f2008-12-17 15:59:43 +0000607 dec_canvas();
608}
609
reed@android.com8a1c16f2008-12-17 15:59:43 +0000610///////////////////////////////////////////////////////////////////////////////
611
junov@chromium.orgbf6c1e42012-01-30 14:53:22 +0000612void SkCanvas::flush() {
reedea5a6512016-07-07 16:44:27 -0700613 this->onFlush();
614}
615
616void SkCanvas::onFlush() {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000617 SkBaseDevice* device = this->getDevice();
junov@chromium.orgbf6c1e42012-01-30 14:53:22 +0000618 if (device) {
619 device->flush();
620 }
621}
622
Mike Reeda2b3b9e2019-11-15 15:00:27 -0500623SkSurface* SkCanvas::getSurface() const {
624 return fSurfaceBase;
625}
626
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000627SkISize SkCanvas::getBaseLayerSize() const {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000628 SkBaseDevice* d = this->getDevice();
reed@google.com210ce002011-11-01 14:24:23 +0000629 return d ? SkISize::Make(d->width(), d->height()) : SkISize::Make(0, 0);
630}
631
senorblancoafc7cce2016-02-02 18:44:15 -0800632SkIRect SkCanvas::getTopLayerBounds() const {
633 SkBaseDevice* d = this->getTopDevice();
634 if (!d) {
635 return SkIRect::MakeEmpty();
636 }
Michael Ludwigfb3f3022020-02-20 13:23:58 -0500637 return d->getGlobalBounds();
senorblancoafc7cce2016-02-02 18:44:15 -0800638}
639
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000640SkBaseDevice* SkCanvas::getDevice() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000641 // return root device
robertphillips@google.comc0290622012-07-16 21:20:03 +0000642 MCRec* rec = (MCRec*) fMCStack.front();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000643 SkASSERT(rec && rec->fLayer);
Florin Malita713b8ef2017-04-28 10:57:24 -0400644 return rec->fLayer->fDevice.get();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000645}
646
Florin Malita0ed3b642017-01-13 16:56:38 +0000647SkBaseDevice* SkCanvas::getTopDevice() const {
Florin Malita713b8ef2017-04-28 10:57:24 -0400648 return fMCRec->fTopLayer->fDevice.get();
reed@google.com9266fed2011-03-30 00:18:03 +0000649}
650
Mike Reed353196f2017-07-21 11:01:18 -0400651bool SkCanvas::readPixels(const SkPixmap& pm, int x, int y) {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000652 SkBaseDevice* device = this->getDevice();
Mike Reed353196f2017-07-21 11:01:18 -0400653 return device && pm.addr() && device->readPixels(pm, x, y);
reed@google.com51df9e32010-12-23 19:29:18 +0000654}
655
Mike Reed353196f2017-07-21 11:01:18 -0400656bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) {
657 return this->readPixels({ dstInfo, dstP, rowBytes}, x, y);
Mike Reed12e946b2017-04-17 10:53:29 -0400658}
659
660bool SkCanvas::readPixels(const SkBitmap& bm, int x, int y) {
661 SkPixmap pm;
662 return bm.peekPixels(&pm) && this->readPixels(pm, x, y);
663}
664
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000665bool SkCanvas::writePixels(const SkBitmap& bitmap, int x, int y) {
Mike Reed4edb5d22017-04-17 11:02:51 -0400666 SkPixmap pm;
667 if (bitmap.peekPixels(&pm)) {
reedcf01e312015-05-23 19:14:51 -0700668 return this->writePixels(pm.info(), pm.addr(), pm.rowBytes(), x, y);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000669 }
670 return false;
671}
672
Matt Sarett03dd6d52017-01-23 12:15:09 -0500673bool SkCanvas::writePixels(const SkImageInfo& srcInfo, const void* pixels, size_t rowBytes,
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000674 int x, int y) {
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000675 SkBaseDevice* device = this->getDevice();
676 if (!device) {
677 return false;
678 }
679
Matt Sarett03dd6d52017-01-23 12:15:09 -0500680 // This check gives us an early out and prevents generation ID churn on the surface.
681 // This is purely optional: it is a subset of the checks performed by SkWritePixelsRec.
682 SkIRect srcRect = SkIRect::MakeXYWH(x, y, srcInfo.width(), srcInfo.height());
Mike Reed92b33352019-08-24 19:39:13 -0400683 if (!srcRect.intersect({0, 0, device->width(), device->height()})) {
Matt Sarett03dd6d52017-01-23 12:15:09 -0500684 return false;
Matt Sarett26ecfe02017-01-23 15:51:01 +0000685 }
Matt Sarett26ecfe02017-01-23 15:51:01 +0000686
Matt Sarett03dd6d52017-01-23 12:15:09 -0500687 // Tell our owning surface to bump its generation ID.
688 const bool completeOverwrite =
689 srcRect.size() == SkISize::Make(device->width(), device->height());
reedc83a2972015-07-16 07:40:45 -0700690 this->predrawNotify(completeOverwrite);
reed4af35f32014-06-27 17:47:49 -0700691
Matt Sarett03dd6d52017-01-23 12:15:09 -0500692 // This can still fail, most notably in the case of a invalid color type or alpha type
693 // conversion. We could pull those checks into this function and avoid the unnecessary
694 // generation ID bump. But then we would be performing those checks twice, since they
695 // are also necessary at the bitmap/pixmap entry points.
Mike Reed353196f2017-07-21 11:01:18 -0400696 return device->writePixels({srcInfo, pixels, rowBytes}, x, y);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000697}
reed@google.com51df9e32010-12-23 19:29:18 +0000698
reed@android.com8a1c16f2008-12-17 15:59:43 +0000699//////////////////////////////////////////////////////////////////////////////
700
reed2ff1fce2014-12-11 07:07:37 -0800701void SkCanvas::checkForDeferredSave() {
702 if (fMCRec->fDeferredSaveCount > 0) {
reed2ff1fce2014-12-11 07:07:37 -0800703 this->doSave();
704 }
705}
706
reedf0090cb2014-11-26 08:55:51 -0800707int SkCanvas::getSaveCount() const {
reed2ff1fce2014-12-11 07:07:37 -0800708#ifdef SK_DEBUG
709 int count = 0;
710 SkDeque::Iter iter(fMCStack, SkDeque::Iter::kFront_IterStart);
711 for (;;) {
712 const MCRec* rec = (const MCRec*)iter.next();
713 if (!rec) {
714 break;
715 }
716 count += 1 + rec->fDeferredSaveCount;
717 }
718 SkASSERT(count == fSaveCount);
719#endif
720 return fSaveCount;
reedf0090cb2014-11-26 08:55:51 -0800721}
722
723int SkCanvas::save() {
reed2ff1fce2014-12-11 07:07:37 -0800724 fSaveCount += 1;
725 fMCRec->fDeferredSaveCount += 1;
726 return this->getSaveCount() - 1; // return our prev value
727}
728
729void SkCanvas::doSave() {
reedf0090cb2014-11-26 08:55:51 -0800730 this->willSave();
fmalitaa62d32d2015-04-28 08:08:57 -0700731
732 SkASSERT(fMCRec->fDeferredSaveCount > 0);
733 fMCRec->fDeferredSaveCount -= 1;
reed2ff1fce2014-12-11 07:07:37 -0800734 this->internalSave();
reedf0090cb2014-11-26 08:55:51 -0800735}
736
Mike Reedab7e8b32020-04-03 15:33:40 -0400737void SkCanvas::notifyCameraChanged() {
738 SkM44 invc; // start with identity
739 if (!fCameraStack.empty()) {
740 invc = fCameraStack.back().fInvPostCamera;
741 }
742 FOR_EACH_TOP_DEVICE(device->setInvCamera(invc));
743}
744
Mike Reed2f92c932020-04-06 15:44:17 -0400745// Don't trigger other virtuals from onSaveCamera
746void SkCanvas::onSaveCamera(const SkM44& projection, const SkM44& camera) {
747 (void)this->save();
748 this->internalConcat44(projection * camera);
749
Mike Reedb18e74d2020-01-16 13:58:22 -0500750 fCameraStack.push_back(CameraRec(fMCRec, camera));
Mike Reedab7e8b32020-04-03 15:33:40 -0400751 this->notifyCameraChanged();
Mike Reed2f92c932020-04-06 15:44:17 -0400752}
Mike Reedab7e8b32020-04-03 15:33:40 -0400753
Mike Reed2f92c932020-04-06 15:44:17 -0400754int SkCanvas::saveCamera(const SkM44& projection, const SkM44& camera) {
755 this->onSaveCamera(projection, camera);
756 return this->getSaveCount();
Mike Reedee0a03a2020-01-14 16:44:47 -0500757}
758
reedf0090cb2014-11-26 08:55:51 -0800759void SkCanvas::restore() {
reed2ff1fce2014-12-11 07:07:37 -0800760 if (fMCRec->fDeferredSaveCount > 0) {
761 SkASSERT(fSaveCount > 1);
762 fSaveCount -= 1;
763 fMCRec->fDeferredSaveCount -= 1;
764 } else {
765 // check for underflow
766 if (fMCStack.count() > 1) {
767 this->willRestore();
768 SkASSERT(fSaveCount > 1);
reeda6441162015-03-26 13:40:09 -0700769 fSaveCount -= 1;
reed2ff1fce2014-12-11 07:07:37 -0800770 this->internalRestore();
771 this->didRestore();
772 }
reedf0090cb2014-11-26 08:55:51 -0800773 }
774}
775
776void SkCanvas::restoreToCount(int count) {
777 // sanity check
778 if (count < 1) {
779 count = 1;
780 }
mtkleinf0f14112014-12-12 08:46:25 -0800781
reedf0090cb2014-11-26 08:55:51 -0800782 int n = this->getSaveCount() - count;
783 for (int i = 0; i < n; ++i) {
784 this->restore();
785 }
786}
787
reed2ff1fce2014-12-11 07:07:37 -0800788void SkCanvas::internalSave() {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000789 MCRec* newTop = (MCRec*)fMCStack.push_back();
reedd9544982014-09-09 18:46:22 -0700790 new (newTop) MCRec(*fMCRec); // balanced in restore()
reed@android.com8a1c16f2008-12-17 15:59:43 +0000791 fMCRec = newTop;
reed@google.com4b226022011-01-11 18:32:13 +0000792
Mike Reedc42a1cd2017-02-14 14:25:14 -0500793 FOR_EACH_TOP_DEVICE(device->save());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000794}
795
reed4960eee2015-12-18 07:09:18 -0800796bool SkCanvas::BoundsAffectsClip(SaveLayerFlags saveLayerFlags) {
Cary Clark7eddfb82018-03-13 14:41:10 -0400797 return !(saveLayerFlags & SkCanvasPriv::kDontClipToLayer_SaveLayerFlag);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000798}
799
reed4960eee2015-12-18 07:09:18 -0800800bool SkCanvas::clipRectBounds(const SkRect* bounds, SaveLayerFlags saveLayerFlags,
reed9b3aa542015-03-11 08:47:12 -0700801 SkIRect* intersection, const SkImageFilter* imageFilter) {
Michael Ludwigaa861a12019-07-19 10:13:47 -0400802 // clipRectBounds() is called to determine the input layer size needed for a given image filter.
803 // The coordinate space of the rectangle passed to filterBounds(kReverse) is meant to be in the
804 // filtering layer space. Here, 'clipBounds' is always in the true device space. When an image
805 // filter does not require a decomposed CTM matrix, the filter space and device space are the
806 // same. When it has been decomposed, we want the original image filter node to process the
807 // bounds in the layer space represented by the decomposed scale matrix. 'imageFilter' is no
808 // longer the original filter, but has the remainder matrix baked into it, and passing in the
809 // the true device clip bounds ensures that the matrix image filter provides a layer clip bounds
810 // to the original filter node (barring inflation from consecutive calls to mapRect). While
811 // initially counter-intuitive given the apparent inconsistency of coordinate spaces, always
812 // passing getDeviceClipBounds() to 'imageFilter' is correct.
813 // FIXME (michaelludwig) - When the remainder matrix is instead applied as a final draw, it will
814 // be important to more accurately calculate the clip bounds in the layer space for the original
815 // image filter (similar to how matrix image filter does it, but ideally without the inflation).
Mike Reed918e1442017-01-23 11:39:45 -0500816 SkIRect clipBounds = this->getDeviceClipBounds();
817 if (clipBounds.isEmpty()) {
junov@chromium.orga907ac32012-02-24 21:54:07 +0000818 return false;
reed@android.comf2b98d62010-12-20 18:26:13 +0000819 }
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +0000820
reed96e657d2015-03-10 17:30:07 -0700821 const SkMatrix& ctm = fMCRec->fMatrix; // this->getTotalMatrix()
822
Robert Phillips12078432018-05-17 11:17:39 -0400823 if (imageFilter && bounds && !imageFilter->canComputeFastBounds()) {
824 // If the image filter DAG affects transparent black then we will need to render
825 // out to the clip bounds
826 bounds = nullptr;
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +0000827 }
Robert Phillips12078432018-05-17 11:17:39 -0400828
829 SkIRect inputSaveLayerBounds;
bsalomon49f085d2014-09-05 13:34:00 -0700830 if (bounds) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000831 SkRect r;
reed96e657d2015-03-10 17:30:07 -0700832 ctm.mapRect(&r, *bounds);
Robert Phillips12078432018-05-17 11:17:39 -0400833 r.roundOut(&inputSaveLayerBounds);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000834 } else { // no user bounds, so just use the clip
Robert Phillips12078432018-05-17 11:17:39 -0400835 inputSaveLayerBounds = clipBounds;
836 }
837
838 if (imageFilter) {
839 // expand the clip bounds by the image filter DAG to include extra content that might
840 // be required by the image filters.
841 clipBounds = imageFilter->filterBounds(clipBounds, ctm,
842 SkImageFilter::kReverse_MapDirection,
843 &inputSaveLayerBounds);
844 }
845
846 SkIRect clippedSaveLayerBounds;
847 if (bounds) {
848 // For better or for worse, user bounds currently act as a hard clip on the layer's
849 // extent (i.e., they implement the CSS filter-effects 'filter region' feature).
850 clippedSaveLayerBounds = inputSaveLayerBounds;
851 } else {
852 // If there are no user bounds, we don't want to artificially restrict the resulting
853 // layer bounds, so allow the expanded clip bounds free reign.
854 clippedSaveLayerBounds = clipBounds;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000855 }
Xianzhu Wang3b428cb2018-01-22 09:51:13 -0800856
857 // early exit if the layer's bounds are clipped out
Robert Phillips12078432018-05-17 11:17:39 -0400858 if (!clippedSaveLayerBounds.intersect(clipBounds)) {
Xianzhu Wang3b428cb2018-01-22 09:51:13 -0800859 if (BoundsAffectsClip(saveLayerFlags)) {
860 fMCRec->fTopLayer->fDevice->clipRegion(SkRegion(), SkClipOp::kIntersect); // empty
861 fMCRec->fRasterClip.setEmpty();
862 fDeviceClipBounds.setEmpty();
863 }
864 return false;
865 }
Robert Phillips12078432018-05-17 11:17:39 -0400866 SkASSERT(!clippedSaveLayerBounds.isEmpty());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000867
reed4960eee2015-12-18 07:09:18 -0800868 if (BoundsAffectsClip(saveLayerFlags)) {
reed180aec42015-03-11 10:39:04 -0700869 // Simplify the current clips since they will be applied properly during restore()
Robert Phillips12078432018-05-17 11:17:39 -0400870 fMCRec->fRasterClip.setRect(clippedSaveLayerBounds);
871 fDeviceClipBounds = qr_clip_bounds(clippedSaveLayerBounds);
junov@chromium.orga907ac32012-02-24 21:54:07 +0000872 }
873
874 if (intersection) {
Robert Phillips12078432018-05-17 11:17:39 -0400875 *intersection = clippedSaveLayerBounds;
junov@chromium.orga907ac32012-02-24 21:54:07 +0000876 }
Robert Phillips12078432018-05-17 11:17:39 -0400877
junov@chromium.orga907ac32012-02-24 21:54:07 +0000878 return true;
879}
880
reed4960eee2015-12-18 07:09:18 -0800881int SkCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint) {
882 return this->saveLayer(SaveLayerRec(bounds, paint, 0));
commit-bot@chromium.orgd70fa202014-04-24 21:51:58 +0000883}
884
Cary Clarke041e312018-03-06 13:00:52 -0500885int SkCanvas::saveLayer(const SaveLayerRec& rec) {
Yuqian Lif7c723c2018-08-29 16:25:47 -0700886 TRACE_EVENT0("skia", TRACE_FUNC);
Mike Reed49f8da02018-08-27 10:48:52 -0400887 if (rec.fPaint && rec.fPaint->nothingToDraw()) {
888 // no need for the layer (or any of the draws until the matching restore()
889 this->save();
890 this->clipRect({0,0,0,0});
891 } else {
892 SaveLayerStrategy strategy = this->getSaveLayerStrategy(rec);
893 fSaveCount += 1;
894 this->internalSaveLayer(rec, strategy);
895 }
reed4960eee2015-12-18 07:09:18 -0800896 return this->getSaveCount() - 1;
reed70ee31b2015-12-10 13:44:45 -0800897}
898
Mike Reed148b7fd2018-12-18 17:38:18 -0500899int SkCanvas::only_axis_aligned_saveBehind(const SkRect* bounds) {
900 if (bounds && !this->getLocalClipBounds().intersects(*bounds)) {
901 // Assuming clips never expand, if the request bounds is outside of the current clip
902 // there is no need to copy/restore the area, so just devolve back to a regular save.
903 this->save();
904 } else {
905 bool doTheWork = this->onDoSaveBehind(bounds);
906 fSaveCount += 1;
907 this->internalSave();
908 if (doTheWork) {
909 this->internalSaveBehind(bounds);
910 }
911 }
912 return this->getSaveCount() - 1;
913}
914
reeda2217ef2016-07-20 06:04:34 -0700915void SkCanvas::DrawDeviceWithFilter(SkBaseDevice* src, const SkImageFilter* filter,
Mike Reedc42a1cd2017-02-14 14:25:14 -0500916 SkBaseDevice* dst, const SkIPoint& dstOrigin,
Mike Reeda1361362017-03-07 09:37:29 -0500917 const SkMatrix& ctm) {
Michael Ludwigb6e89222019-09-05 13:10:21 -0400918 // The local bounds of the src device; all the bounds passed to snapSpecial must be intersected
919 // with this rect.
Michael Ludwig6d1c0d42019-09-04 17:39:42 -0400920 const SkIRect srcDevRect = SkIRect::MakeWH(src->width(), src->height());
Michael Ludwigfb3f3022020-02-20 13:23:58 -0500921 // TODO(michaelludwig) - Update this function to use the relative transforms between src and
922 // dst; for now, since devices never have complex transforms, we can keep using getOrigin().
Michael Ludwig6d1c0d42019-09-04 17:39:42 -0400923 if (!filter) {
Michael Ludwigb6e89222019-09-05 13:10:21 -0400924 // All non-filtered devices are currently axis aligned, so they only differ by their origin.
925 // This means that we only have to copy a dst-sized block of pixels out of src and translate
926 // it to the matching position relative to dst's origin.
Michael Ludwig6d1c0d42019-09-04 17:39:42 -0400927 SkIRect snapBounds = SkIRect::MakeXYWH(dstOrigin.x() - src->getOrigin().x(),
928 dstOrigin.y() - src->getOrigin().y(),
929 dst->width(), dst->height());
930 if (!snapBounds.intersect(srcDevRect)) {
Michael Ludwig08b260c2019-05-17 11:21:53 -0400931 return;
932 }
933
Michael Ludwig6d1c0d42019-09-04 17:39:42 -0400934 auto special = src->snapSpecial(snapBounds);
935 if (special) {
Michael Ludwigb6e89222019-09-05 13:10:21 -0400936 // The image is drawn at 1-1 scale with integer translation, so no filtering is needed.
937 SkPaint p;
Michael Ludwig6d1c0d42019-09-04 17:39:42 -0400938 dst->drawSpecial(special.get(), 0, 0, p, nullptr, SkMatrix::I());
939 }
940 return;
Michael Ludwig7d2ad0f2019-05-03 17:09:47 -0400941 }
942
Michael Ludwig6d1c0d42019-09-04 17:39:42 -0400943 // First decompose the ctm into a post-filter transform and a filter matrix that is supported
944 // by the backdrop filter.
945 SkMatrix toRoot, layerMatrix;
946 SkSize scale;
947 if (ctm.isScaleTranslate() || as_IFB(filter)->canHandleComplexCTM()) {
948 toRoot = SkMatrix::I();
949 layerMatrix = ctm;
950 } else if (ctm.decomposeScale(&scale, &toRoot)) {
951 layerMatrix = SkMatrix::MakeScale(scale.fWidth, scale.fHeight);
952 } else {
953 // Perspective, for now, do no scaling of the layer itself.
954 // TODO (michaelludwig) - perhaps it'd be better to explore a heuristic scale pulled from
955 // the matrix, e.g. based on the midpoint of the near/far planes?
956 toRoot = ctm;
957 layerMatrix = SkMatrix::I();
958 }
959
960 // We have to map the dst bounds from the root space into the layer space where filtering will
961 // occur. If we knew the input bounds of the content that defined the original dst bounds, we
962 // could map that forward by layerMatrix and have tighter bounds, but toRoot^-1 * dst bounds
963 // is a safe, conservative estimate.
964 SkMatrix fromRoot;
965 if (!toRoot.invert(&fromRoot)) {
966 return;
967 }
968
969 // This represents what the backdrop filter needs to produce in the layer space, and is sized
970 // such that drawing it into dst with the toRoot transform will cover the actual dst device.
971 SkIRect layerTargetBounds = fromRoot.mapRect(
972 SkRect::MakeXYWH(dstOrigin.x(), dstOrigin.y(), dst->width(), dst->height())).roundOut();
973 // While layerTargetBounds is what needs to be output by the filter, the filtering process may
974 // require some extra input pixels.
975 SkIRect layerInputBounds = filter->filterBounds(
976 layerTargetBounds, layerMatrix, SkImageFilter::kReverse_MapDirection,
977 &layerTargetBounds);
978
979 // Map the required input into the root space, then make relative to the src device. This will
Michael Ludwigb6e89222019-09-05 13:10:21 -0400980 // be the conservative contents required to fill a layerInputBounds-sized surface with the
981 // backdrop content (transformed back into the layer space using fromRoot).
Michael Ludwig6d1c0d42019-09-04 17:39:42 -0400982 SkIRect backdropBounds = toRoot.mapRect(SkRect::Make(layerInputBounds)).roundOut();
983 backdropBounds.offset(-src->getOrigin().x(), -src->getOrigin().y());
984 if (!backdropBounds.intersect(srcDevRect)) {
985 return;
986 }
987
988 auto special = src->snapSpecial(backdropBounds);
989 if (!special) {
990 return;
991 }
992
993 SkColorType colorType = src->imageInfo().colorType();
994 if (colorType == kUnknown_SkColorType) {
995 colorType = kRGBA_8888_SkColorType;
996 }
997 SkColorSpace* colorSpace = src->imageInfo().colorSpace();
Michael Ludwigb6e89222019-09-05 13:10:21 -0400998
999 SkPaint p;
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001000 if (!toRoot.isIdentity()) {
Michael Ludwigb6e89222019-09-05 13:10:21 -04001001 // Drawing the temporary and final filtered image requires a higher filter quality if the
1002 // 'toRoot' transformation is not identity, in order to minimize the impact on already
1003 // rendered edges/content.
1004 // TODO (michaelludwig) - Explore reducing this quality, identify visual tradeoffs
1005 p.setFilterQuality(kHigh_SkFilterQuality);
1006
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001007 // The snapped backdrop content needs to be transformed by fromRoot into the layer space,
1008 // and stored in a temporary surface, which is then used as the input to the actual filter.
1009 auto tmpSurface = special->makeSurface(colorType, colorSpace, layerInputBounds.size());
1010 if (!tmpSurface) {
1011 return;
1012 }
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001013
1014 auto tmpCanvas = tmpSurface->getCanvas();
1015 tmpCanvas->clear(SK_ColorTRANSPARENT);
1016 // Reading in reverse, this takes the backdrop bounds from src device space into the root
1017 // space, then maps from root space into the layer space, then maps it so the input layer's
1018 // top left corner is (0, 0). This transformation automatically accounts for any cropping
1019 // performed on backdropBounds.
1020 tmpCanvas->translate(-layerInputBounds.fLeft, -layerInputBounds.fTop);
1021 tmpCanvas->concat(fromRoot);
1022 tmpCanvas->translate(src->getOrigin().x(), src->getOrigin().y());
Michael Ludwigb6e89222019-09-05 13:10:21 -04001023
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001024 tmpCanvas->drawImageRect(special->asImage(), special->subset(),
1025 SkRect::Make(backdropBounds), &p, kStrict_SrcRectConstraint);
1026 special = tmpSurface->makeImageSnapshot();
1027 } else {
1028 // Since there is no extra transform that was done, update the input bounds to reflect
1029 // cropping of the snapped backdrop image. In this case toRoot = I, so layerInputBounds
1030 // was equal to backdropBounds before it was made relative to the src device and cropped.
1031 // When we use the original snapped image directly, just map the update backdrop bounds
1032 // back into the shared layer space
1033 layerInputBounds = backdropBounds;
1034 layerInputBounds.offset(src->getOrigin().x(), src->getOrigin().y());
Michael Ludwigb6e89222019-09-05 13:10:21 -04001035
1036 // Similar to the unfiltered case above, when toRoot is the identity, then the final
1037 // draw will be 1-1 so there is no need to increase filter quality.
1038 p.setFilterQuality(kNone_SkFilterQuality);
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001039 }
1040
1041 // Now evaluate the filter on 'special', which contains the backdrop content mapped back into
1042 // layer space. This has to further offset everything so that filter evaluation thinks the
1043 // source image's top left corner is (0, 0).
1044 // TODO (michaelludwig) - Once image filters are robust to non-(0,0) image origins for inputs,
1045 // this can be simplified.
1046 layerTargetBounds.offset(-layerInputBounds.fLeft, -layerInputBounds.fTop);
1047 SkMatrix filterCTM = layerMatrix;
1048 filterCTM.postTranslate(-layerInputBounds.fLeft, -layerInputBounds.fTop);
1049 skif::Context ctx(filterCTM, layerTargetBounds, nullptr, colorType, colorSpace, special.get());
1050
1051 SkIPoint offset;
1052 special = as_IFB(filter)->filterImage(ctx).imageAndOffset(&offset);
reeda2217ef2016-07-20 06:04:34 -07001053 if (special) {
Michael Ludwigb6e89222019-09-05 13:10:21 -04001054 // Draw the filtered backdrop content into the dst device. We add layerInputBounds origin
1055 // to offset because the original value in 'offset' was relative to 'filterCTM'. 'filterCTM'
1056 // had subtracted the layerInputBounds origin, so adding that back makes 'offset' relative
1057 // to 'layerMatrix' (what we need it to be when drawing the image by 'toRoot').
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001058 offset += layerInputBounds.topLeft();
1059
1060 // Manually setting the device's CTM requires accounting for the device's origin.
1061 // TODO (michaelludwig) - This could be simpler if the dst device had its origin configured
Michael Ludwigc89d1b52019-10-18 11:32:56 -04001062 // before filtering the backdrop device, and if SkAutoDeviceTransformRestore had a way to accept
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001063 // a global CTM instead of a device CTM.
1064 SkMatrix dstCTM = toRoot;
1065 dstCTM.postTranslate(-dstOrigin.x(), -dstOrigin.y());
Michael Ludwigc89d1b52019-10-18 11:32:56 -04001066 SkAutoDeviceTransformRestore adr(dst, dstCTM);
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001067
1068 // And because devices don't have a special-image draw function that supports arbitrary
1069 // matrices, we are abusing the asImage() functionality here...
1070 SkRect specialSrc = SkRect::Make(special->subset());
Michael Ludwigb6e89222019-09-05 13:10:21 -04001071 auto looseImage = special->asImage();
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001072 dst->drawImageRect(
Michael Ludwigb6e89222019-09-05 13:10:21 -04001073 looseImage.get(), &specialSrc,
Michael Ludwig6d1c0d42019-09-04 17:39:42 -04001074 SkRect::MakeXYWH(offset.x(), offset.y(), special->width(), special->height()),
1075 p, kStrict_SrcRectConstraint);
reeda2217ef2016-07-20 06:04:34 -07001076 }
robertphillips7354a4b2015-12-16 05:08:27 -08001077}
reed70ee31b2015-12-10 13:44:45 -08001078
Mike Kleine083f7c2018-02-07 12:54:27 -05001079static SkImageInfo make_layer_info(const SkImageInfo& prev, int w, int h, const SkPaint* paint) {
Mike Klein649fb732018-02-26 15:09:16 -05001080 SkColorType ct = prev.colorType();
Brian Osmand7a59752019-09-20 11:16:58 -04001081 if (prev.bytesPerPixel() <= 4 &&
1082 prev.colorType() != kRGBA_8888_SkColorType &&
1083 prev.colorType() != kBGRA_8888_SkColorType) {
Mike Klein649fb732018-02-26 15:09:16 -05001084 // "Upgrade" A8, G8, 565, 4444, 1010102, 101010x, and 888x to 8888,
1085 // ensuring plenty of alpha bits for the layer, perhaps losing some color bits in return.
1086 ct = kN32_SkColorType;
1087 }
1088 return SkImageInfo::Make(w, h, ct, kPremul_SkAlphaType, prev.refColorSpace());
reed129ed1c2016-02-22 06:42:31 -08001089}
1090
reed4960eee2015-12-18 07:09:18 -08001091void SkCanvas::internalSaveLayer(const SaveLayerRec& rec, SaveLayerStrategy strategy) {
Yuqian Lif7c723c2018-08-29 16:25:47 -07001092 TRACE_EVENT0("skia", TRACE_FUNC);
reed4960eee2015-12-18 07:09:18 -08001093 const SkRect* bounds = rec.fBounds;
reed4960eee2015-12-18 07:09:18 -08001094 SaveLayerFlags saveLayerFlags = rec.fSaveLayerFlags;
1095
Michael Ludwigeced98b2020-03-03 10:39:41 -05001096 SkTCopyOnFirstWrite<SkPaint> paint(rec.fPaint);
1097 // saveLayer ignores mask filters, so force it to null
1098 if (paint.get() && paint->getMaskFilter()) {
1099 paint.writable()->setMaskFilter(nullptr);
1100 }
1101
Mike Reed5532c2a2019-02-23 12:00:32 -05001102 // If we have a backdrop filter, then we must apply it to the entire layer (clip-bounds)
1103 // regardless of any hint-rect from the caller. skbug.com/8783
1104 if (rec.fBackdrop) {
1105 bounds = nullptr;
1106 }
1107
Michael Ludwigeced98b2020-03-03 10:39:41 -05001108 SkImageFilter* imageFilter = paint.get() ? paint->getImageFilter() : nullptr;
reed8c30a812016-04-20 16:36:51 -07001109 SkMatrix stashedMatrix = fMCRec->fMatrix;
Robert Phillips3d0e8502018-04-20 10:27:27 -04001110 MCRec* modifiedRec = nullptr;
Michael Ludwig08b260c2019-05-17 11:21:53 -04001111
reed8c30a812016-04-20 16:36:51 -07001112 /*
Michael Ludwig08b260c2019-05-17 11:21:53 -04001113 * Many ImageFilters (so far) do not (on their own) correctly handle matrices (CTM) that
1114 * contain rotation/skew/etc. We rely on applyCTM to create a new image filter DAG as needed to
1115 * accommodate this, but it requires update the CTM we use when drawing into the layer.
reed8c30a812016-04-20 16:36:51 -07001116 *
1117 * 1. Stash off the current CTM
Michael Ludwig08b260c2019-05-17 11:21:53 -04001118 * 2. Apply the CTM to imagefilter, which decomposes it into simple and complex transforms
1119 * if necessary.
1120 * 3. Wack the CTM to be the remaining scale matrix and use the modified imagefilter, which
1121 * is a MatrixImageFilter that contains the complex matrix.
reed8c30a812016-04-20 16:36:51 -07001122 * 4. Proceed as usual, allowing the client to draw into the layer (now with a scale-only CTM)
Michael Ludwig08b260c2019-05-17 11:21:53 -04001123 * 5. During restore, the MatrixImageFilter automatically applies complex stage to the output
reed8c30a812016-04-20 16:36:51 -07001124 * of the original imagefilter, and draw that (via drawSprite)
1125 * 6. Unwack the CTM to its original state (i.e. stashedMatrix)
1126 *
1127 * Perhaps in the future we could augment #5 to apply REMAINDER as part of the draw (no longer
1128 * a sprite operation) to avoid the extra buffer/overhead of MatrixImageFilter.
1129 */
Michael Ludwig08b260c2019-05-17 11:21:53 -04001130 if (imageFilter) {
1131 SkMatrix modifiedCTM;
Michael Ludwig8ee6cf32019-08-02 09:57:04 -04001132 sk_sp<SkImageFilter> modifiedFilter = as_IFB(imageFilter)->applyCTM(stashedMatrix,
1133 &modifiedCTM);
1134 if (as_IFB(modifiedFilter)->uniqueID() != as_IFB(imageFilter)->uniqueID()) {
Michael Ludwig08b260c2019-05-17 11:21:53 -04001135 // The original filter couldn't support the CTM entirely
Michael Ludwig8ee6cf32019-08-02 09:57:04 -04001136 SkASSERT(modifiedCTM.isScaleTranslate() || as_IFB(imageFilter)->canHandleComplexCTM());
Michael Ludwig08b260c2019-05-17 11:21:53 -04001137 modifiedRec = fMCRec;
1138 this->internalSetMatrix(modifiedCTM);
Michael Ludwigeced98b2020-03-03 10:39:41 -05001139 imageFilter = modifiedFilter.get();
1140 paint.writable()->setImageFilter(std::move(modifiedFilter));
Michael Ludwig08b260c2019-05-17 11:21:53 -04001141 }
1142 // Else the filter didn't change, so modifiedCTM == stashedMatrix and there's nothing
1143 // left to do since the stack already has that as the CTM.
reed8c30a812016-04-20 16:36:51 -07001144 }
reed8c30a812016-04-20 16:36:51 -07001145
junov@chromium.orga907ac32012-02-24 21:54:07 +00001146 // do this before we create the layer. We don't call the public save() since
1147 // that would invoke a possibly overridden virtual
reed2ff1fce2014-12-11 07:07:37 -08001148 this->internalSave();
junov@chromium.orga907ac32012-02-24 21:54:07 +00001149
junov@chromium.orga907ac32012-02-24 21:54:07 +00001150 SkIRect ir;
reed8c30a812016-04-20 16:36:51 -07001151 if (!this->clipRectBounds(bounds, saveLayerFlags, &ir, imageFilter)) {
Robert Phillips3d0e8502018-04-20 10:27:27 -04001152 if (modifiedRec) {
1153 // In this case there will be no layer in which to stash the matrix so we need to
1154 // revert the prior MCRec to its earlier state.
1155 modifiedRec->fMatrix = stashedMatrix;
1156 }
reed2ff1fce2014-12-11 07:07:37 -08001157 return;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001158 }
1159
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +00001160 // FIXME: do willSaveLayer() overriders returning kNoLayer_SaveLayerStrategy really care about
1161 // the clipRectBounds() call above?
1162 if (kNoLayer_SaveLayerStrategy == strategy) {
reed2ff1fce2014-12-11 07:07:37 -08001163 return;
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +00001164 }
1165
reed8dc0ccb2015-03-20 06:32:52 -07001166 SkPixelGeometry geo = fProps.pixelGeometry();
1167 if (paint) {
reed76033be2015-03-14 10:54:31 -07001168 // TODO: perhaps add a query to filters so we might preserve opaqueness...
reeddaa57bf2015-05-15 10:39:17 -07001169 if (paint->getImageFilter() || paint->getColorFilter()) {
reed8dc0ccb2015-03-20 06:32:52 -07001170 geo = kUnknown_SkPixelGeometry;
reed@google.comb55deeb2012-01-06 14:43:09 +00001171 }
1172 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001173
robertphillips5139e502016-07-19 05:10:40 -07001174 SkBaseDevice* priorDevice = this->getTopDevice();
Mike Reedc42a1cd2017-02-14 14:25:14 -05001175 if (nullptr == priorDevice) { // Do we still need this check???
reedb2db8982014-11-13 12:41:02 -08001176 SkDebugf("Unable to find device for layer.");
reed2ff1fce2014-12-11 07:07:37 -08001177 return;
reed@google.com76dd2772012-01-05 21:15:07 +00001178 }
reedb2db8982014-11-13 12:41:02 -08001179
Mike Kleine083f7c2018-02-07 12:54:27 -05001180 SkImageInfo info = make_layer_info(priorDevice->imageInfo(), ir.width(), ir.height(), paint);
Mike Reed1f3548c2019-07-12 12:53:11 -04001181 if (rec.fSaveLayerFlags & kF16ColorType) {
1182 info = info.makeColorType(kRGBA_F16_SkColorType);
1183 }
reed129ed1c2016-02-22 06:42:31 -08001184
Hal Canary704cd322016-11-07 14:13:52 -05001185 sk_sp<SkBaseDevice> newDevice;
reed61f501f2015-04-29 08:34:00 -07001186 {
Florin Malita4571e492019-07-16 10:25:58 -04001187 SkASSERT(info.alphaType() != kOpaque_SkAlphaType);
reeddaa57bf2015-05-15 10:39:17 -07001188 const SkBaseDevice::TileUsage usage = SkBaseDevice::kNever_TileUsage;
Herb Derby41f4f312018-06-06 17:45:53 +00001189 const bool trackCoverage =
1190 SkToBool(saveLayerFlags & kMaskAgainstCoverage_EXPERIMENTAL_DONT_USE_SaveLayerFlag);
reed70ee31b2015-12-10 13:44:45 -08001191 const SkBaseDevice::CreateInfo createInfo = SkBaseDevice::CreateInfo(info, usage, geo,
Mike Reed910ca0f2018-04-25 13:04:05 -04001192 trackCoverage,
Mike Reed356f7c22017-01-10 11:58:39 -05001193 fAllocator.get());
robertphillips5139e502016-07-19 05:10:40 -07001194 newDevice.reset(priorDevice->onCreateDevice(createInfo, paint));
1195 if (!newDevice) {
reed7503d602016-07-15 14:23:29 -07001196 return;
reed61f501f2015-04-29 08:34:00 -07001197 }
bungeman@google.come25c6842011-08-17 14:53:54 +00001198 }
Florin Malita53f77bd2017-04-28 13:48:37 -04001199 DeviceCM* layer = new DeviceCM(newDevice, paint, stashedMatrix, rec.fClipMask, rec.fClipMatrix);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001200
Mike Reedb43a3e02017-02-11 10:18:58 -05001201 // only have a "next" if this new layer doesn't affect the clip (rare)
1202 layer->fNext = BoundsAffectsClip(saveLayerFlags) ? nullptr : fMCRec->fTopLayer;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001203 fMCRec->fLayer = layer;
1204 fMCRec->fTopLayer = layer; // this field is NOT an owner of layer
reeda2217ef2016-07-20 06:04:34 -07001205
Mike Reedc61abee2017-02-28 17:45:27 -05001206 if ((rec.fSaveLayerFlags & kInitWithPrevious_SaveLayerFlag) || rec.fBackdrop) {
Mike Reedc42a1cd2017-02-14 14:25:14 -05001207 DrawDeviceWithFilter(priorDevice, rec.fBackdrop, newDevice.get(), { ir.fLeft, ir.fTop },
Mike Reeda1361362017-03-07 09:37:29 -05001208 fMCRec->fMatrix);
reeda2217ef2016-07-20 06:04:34 -07001209 }
Mike Reedc42a1cd2017-02-14 14:25:14 -05001210
Mike Reedc42a1cd2017-02-14 14:25:14 -05001211 newDevice->setOrigin(fMCRec->fMatrix, ir.fLeft, ir.fTop);
1212
1213 newDevice->androidFramework_setDeviceClipRestriction(&fClipRestrictionRect);
1214 if (layer->fNext) {
1215 // need to punch a hole in the previous device, so we don't draw there, given that
1216 // the new top-layer will allow drawing to happen "below" it.
1217 SkRegion hole(ir);
1218 do {
1219 layer = layer->fNext;
1220 layer->fDevice->clipRegion(hole, SkClipOp::kDifference);
1221 } while (layer->fNext);
1222 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001223}
1224
commit-bot@chromium.orgd70fa202014-04-24 21:51:58 +00001225int SkCanvas::saveLayerAlpha(const SkRect* bounds, U8CPU alpha) {
reedbada1882015-12-21 13:09:44 -08001226 if (0xFF == alpha) {
1227 return this->saveLayer(bounds, nullptr);
1228 } else {
1229 SkPaint tmpPaint;
1230 tmpPaint.setAlpha(alpha);
1231 return this->saveLayer(bounds, &tmpPaint);
1232 }
commit-bot@chromium.orgd70fa202014-04-24 21:51:58 +00001233}
1234
Mike Reed148b7fd2018-12-18 17:38:18 -05001235void SkCanvas::internalSaveBehind(const SkRect* localBounds) {
Mike Reed148b7fd2018-12-18 17:38:18 -05001236 SkBaseDevice* device = this->getTopDevice();
1237 if (nullptr == device) { // Do we still need this check???
1238 return;
1239 }
1240
Michael Ludwigfb3f3022020-02-20 13:23:58 -05001241 // Map the local bounds into the top device's coordinate space (this is not
1242 // necessarily the full global CTM transform).
1243 SkIRect devBounds;
1244 if (localBounds) {
1245 SkRect tmp;
1246 device->localToDevice().mapRect(&tmp, *localBounds);
1247 if (!devBounds.intersect(tmp.round(), device->devClipBounds())) {
1248 devBounds.setEmpty();
1249 }
1250 } else {
1251 devBounds = device->devClipBounds();
1252 }
1253 if (devBounds.isEmpty()) {
1254 return;
1255 }
Mike Reed148b7fd2018-12-18 17:38:18 -05001256
Michael Ludwigac352122019-08-28 21:03:05 +00001257 // This is getting the special image from the current device, which is then drawn into (both by
1258 // a client, and the drawClippedToSaveBehind below). Since this is not saving a layer, with its
1259 // own device, we need to explicitly copy the back image contents so that its original content
1260 // is available when we splat it back later during restore.
1261 auto backImage = device->snapSpecial(devBounds, /* copy */ true);
Mike Reed148b7fd2018-12-18 17:38:18 -05001262 if (!backImage) {
1263 return;
1264 }
1265
1266 // we really need the save, so we can wack the fMCRec
1267 this->checkForDeferredSave();
1268
1269 fMCRec->fBackImage.reset(new BackImage{std::move(backImage), devBounds.topLeft()});
1270
1271 SkPaint paint;
1272 paint.setBlendMode(SkBlendMode::kClear);
Mike Reed9adc82c2019-04-23 10:28:13 -04001273 this->drawClippedToSaveBehind(paint);
Mike Reed148b7fd2018-12-18 17:38:18 -05001274}
1275
reed@android.com8a1c16f2008-12-17 15:59:43 +00001276void SkCanvas::internalRestore() {
1277 SkASSERT(fMCStack.count() != 0);
1278
bungeman@google.com88edf1e2011-08-08 19:41:56 +00001279 // reserve our layer (if any)
reed@android.com8a1c16f2008-12-17 15:59:43 +00001280 DeviceCM* layer = fMCRec->fLayer; // may be null
1281 // now detach it from fMCRec so we can pop(). Gets freed after its drawn
halcanary96fcdcc2015-08-27 07:41:13 -07001282 fMCRec->fLayer = nullptr;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001283
Mike Reed148b7fd2018-12-18 17:38:18 -05001284 // move this out before we do the actual restore
1285 auto backImage = std::move(fMCRec->fBackImage);
1286
Mike Reedb18e74d2020-01-16 13:58:22 -05001287 if (!fCameraStack.empty() && fCameraStack.back().fMCRec == fMCRec) {
1288 fCameraStack.pop_back();
Mike Reedab7e8b32020-04-03 15:33:40 -04001289 this->notifyCameraChanged();
Mike Reedb18e74d2020-01-16 13:58:22 -05001290 }
1291
reed@android.com8a1c16f2008-12-17 15:59:43 +00001292 // now do the normal restore()
1293 fMCRec->~MCRec(); // balanced in save()
1294 fMCStack.pop_back();
1295 fMCRec = (MCRec*)fMCStack.back();
1296
Mike Reedc42a1cd2017-02-14 14:25:14 -05001297 if (fMCRec) {
1298 FOR_EACH_TOP_DEVICE(device->restore(fMCRec->fMatrix));
1299 }
Mike Reedc42a1cd2017-02-14 14:25:14 -05001300
Mike Reed148b7fd2018-12-18 17:38:18 -05001301 if (backImage) {
1302 SkPaint paint;
1303 paint.setBlendMode(SkBlendMode::kDstOver);
1304 const int x = backImage->fLoc.x();
1305 const int y = backImage->fLoc.y();
1306 this->getTopDevice()->drawSpecial(backImage->fImage.get(), x, y, paint,
1307 nullptr, SkMatrix::I());
1308 }
1309
reed@android.com8a1c16f2008-12-17 15:59:43 +00001310 /* Time to draw the layer's offscreen. We can't call the public drawSprite,
1311 since if we're being recorded, we don't want to record this (the
1312 recorder will have already recorded the restore).
1313 */
bsalomon49f085d2014-09-05 13:34:00 -07001314 if (layer) {
Mike Reedb43a3e02017-02-11 10:18:58 -05001315 if (fMCRec) {
Lee Salzman5d8949c2018-09-19 15:36:54 -04001316 layer->fDevice->setImmutable();
Michael Ludwigfb3f3022020-02-20 13:23:58 -05001317 // At this point, 'layer' has been removed from the device stack, so the devices that
1318 // internalDrawDevice sees are the destinations that 'layer' is drawn into.
1319 this->internalDrawDevice(layer->fDevice.get(), layer->fPaint.get(),
Florin Malita53f77bd2017-04-28 13:48:37 -04001320 layer->fClipImage.get(), layer->fClipMatrix);
reed8c30a812016-04-20 16:36:51 -07001321 // restore what we smashed in internalSaveLayer
Ben Wagner738a2562018-04-23 17:23:30 -04001322 this->internalSetMatrix(layer->fStashedMatrix);
halcanary385fe4d2015-08-26 13:07:48 -07001323 delete layer;
reedb679ca82015-04-07 04:40:48 -07001324 } else {
1325 // we're at the root
reeda499f902015-05-01 09:34:31 -07001326 SkASSERT(layer == (void*)fDeviceCMStorage);
reedb679ca82015-04-07 04:40:48 -07001327 layer->~DeviceCM();
reed8c30a812016-04-20 16:36:51 -07001328 // no need to update fMCRec, 'cause we're killing the canvas
reed@android.com8a1c16f2008-12-17 15:59:43 +00001329 }
bungeman@google.com88edf1e2011-08-08 19:41:56 +00001330 }
msarettfbfa2582016-08-12 08:29:08 -07001331
1332 if (fMCRec) {
msarett9637ea92016-08-18 14:03:30 -07001333 fIsScaleTranslate = fMCRec->fMatrix.isScaleTranslate();
msarettfbfa2582016-08-12 08:29:08 -07001334 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1335 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001336}
1337
reede8f30622016-03-23 18:59:25 -07001338sk_sp<SkSurface> SkCanvas::makeSurface(const SkImageInfo& info, const SkSurfaceProps* props) {
halcanary96fcdcc2015-08-27 07:41:13 -07001339 if (nullptr == props) {
reed4a8126e2014-09-22 07:29:03 -07001340 props = &fProps;
1341 }
1342 return this->onNewSurface(info, *props);
reed@google.com76f10a32014-02-05 15:32:21 +00001343}
1344
reede8f30622016-03-23 18:59:25 -07001345sk_sp<SkSurface> SkCanvas::onNewSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
reed@google.com76f10a32014-02-05 15:32:21 +00001346 SkBaseDevice* dev = this->getDevice();
Cary Clarka24712e2018-09-05 18:41:40 +00001347 return dev ? dev->makeSurface(info, props) : nullptr;
reed@google.com76f10a32014-02-05 15:32:21 +00001348}
1349
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +00001350SkImageInfo SkCanvas::imageInfo() const {
reedea5a6512016-07-07 16:44:27 -07001351 return this->onImageInfo();
1352}
1353
1354SkImageInfo SkCanvas::onImageInfo() const {
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +00001355 SkBaseDevice* dev = this->getDevice();
1356 if (dev) {
1357 return dev->imageInfo();
1358 } else {
reed@google.com900ecf22014-02-20 20:55:37 +00001359 return SkImageInfo::MakeUnknown(0, 0);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +00001360 }
1361}
1362
brianosman898235c2016-04-06 07:38:23 -07001363bool SkCanvas::getProps(SkSurfaceProps* props) const {
reedea5a6512016-07-07 16:44:27 -07001364 return this->onGetProps(props);
1365}
1366
1367bool SkCanvas::onGetProps(SkSurfaceProps* props) const {
brianosman898235c2016-04-06 07:38:23 -07001368 SkBaseDevice* dev = this->getDevice();
1369 if (dev) {
1370 if (props) {
1371 *props = fProps;
1372 }
1373 return true;
1374 } else {
1375 return false;
1376 }
1377}
1378
reed6ceeebd2016-03-09 14:26:26 -08001379bool SkCanvas::peekPixels(SkPixmap* pmap) {
1380 return this->onPeekPixels(pmap);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +00001381}
1382
reed884e97c2015-05-26 11:31:54 -07001383bool SkCanvas::onPeekPixels(SkPixmap* pmap) {
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +00001384 SkBaseDevice* dev = this->getDevice();
reed884e97c2015-05-26 11:31:54 -07001385 return dev && dev->peekPixels(pmap);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +00001386}
1387
commit-bot@chromium.org6b4aaa72014-04-21 21:09:38 +00001388void* SkCanvas::accessTopLayerPixels(SkImageInfo* info, size_t* rowBytes, SkIPoint* origin) {
reed884e97c2015-05-26 11:31:54 -07001389 SkPixmap pmap;
1390 if (!this->onAccessTopLayerPixels(&pmap)) {
halcanary96fcdcc2015-08-27 07:41:13 -07001391 return nullptr;
reed884e97c2015-05-26 11:31:54 -07001392 }
1393 if (info) {
1394 *info = pmap.info();
1395 }
1396 if (rowBytes) {
1397 *rowBytes = pmap.rowBytes();
1398 }
1399 if (origin) {
Michael Ludwigfb3f3022020-02-20 13:23:58 -05001400 // If the caller requested the origin, they presumably are expecting the returned pixels to
1401 // be axis-aligned with the root canvas. If the top level device isn't axis aligned, that's
1402 // not the case. Until we update accessTopLayerPixels() to accept a coord space matrix
1403 // instead of an origin, just don't expose the pixels in that case. Note that this means
1404 // that layers with complex coordinate spaces can still report their pixels if the caller
1405 // does not ask for the origin (e.g. just to dump its output to a file, etc).
1406 if (this->getTopDevice()->isPixelAlignedToGlobal()) {
1407 *origin = this->getTopDevice()->getOrigin();
1408 } else {
1409 return nullptr;
1410 }
commit-bot@chromium.org6b4aaa72014-04-21 21:09:38 +00001411 }
reed884e97c2015-05-26 11:31:54 -07001412 return pmap.writable_addr();
reed@google.com9c135db2014-03-12 18:28:35 +00001413}
1414
reed884e97c2015-05-26 11:31:54 -07001415bool SkCanvas::onAccessTopLayerPixels(SkPixmap* pmap) {
reed@google.com9c135db2014-03-12 18:28:35 +00001416 SkBaseDevice* dev = this->getTopDevice();
reed884e97c2015-05-26 11:31:54 -07001417 return dev && dev->accessPixels(pmap);
reed@google.com9c135db2014-03-12 18:28:35 +00001418}
1419
reed@android.com8a1c16f2008-12-17 15:59:43 +00001420/////////////////////////////////////////////////////////////////////////////
reed@android.com8a1c16f2008-12-17 15:59:43 +00001421
Mike Reed8bcd1282019-03-13 16:51:54 -04001422// In our current design/features, we should never have a layer (src) in a different colorspace
1423// than its parent (dst), so we assert that here. This is called out from other asserts, in case
1424// we add some feature in the future to allow a given layer/imagefilter to operate in a specific
1425// colorspace.
1426static void check_drawdevice_colorspaces(SkColorSpace* src, SkColorSpace* dst) {
1427 SkASSERT(src == dst);
1428}
1429
Michael Ludwigfb3f3022020-02-20 13:23:58 -05001430void SkCanvas::internalDrawDevice(SkBaseDevice* srcDev, const SkPaint* paint,
Florin Malita53f77bd2017-04-28 13:48:37 -04001431 SkImage* clipImage, const SkMatrix& clipMatrix) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001432 SkPaint tmp;
halcanary96fcdcc2015-08-27 07:41:13 -07001433 if (nullptr == paint) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001434 paint = &tmp;
1435 }
reed@google.com4b226022011-01-11 18:32:13 +00001436
Mike Reed38992392019-07-30 10:48:15 -04001437 DRAW_BEGIN_DRAWDEVICE(*paint)
reeda2217ef2016-07-20 06:04:34 -07001438
reed@android.com8a1c16f2008-12-17 15:59:43 +00001439 while (iter.next()) {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001440 SkBaseDevice* dstDev = iter.fDevice;
Mike Reed8bcd1282019-03-13 16:51:54 -04001441 check_drawdevice_colorspaces(dstDev->imageInfo().colorSpace(),
1442 srcDev->imageInfo().colorSpace());
Mike Reed38992392019-07-30 10:48:15 -04001443 paint = &draw.paint();
reed@google.com76dd2772012-01-05 21:15:07 +00001444 SkImageFilter* filter = paint->getImageFilter();
Michael Ludwigfb3f3022020-02-20 13:23:58 -05001445 // TODO(michaelludwig) - Devices aren't created with complex coordinate systems yet,
1446 // so it should always be possible to use the relative origin. Once drawDevice() and
1447 // drawSpecial() take an SkMatrix, this can switch to getRelativeTransform() instead.
1448 SkIPoint pos = srcDev->getOrigin() - dstDev->getOrigin();
Florin Malita53f77bd2017-04-28 13:48:37 -04001449 if (filter || clipImage) {
Robert Phillips833dcf42016-11-18 08:44:13 -05001450 sk_sp<SkSpecialImage> specialImage = srcDev->snapSpecial();
1451 if (specialImage) {
Mike Reed8bcd1282019-03-13 16:51:54 -04001452 check_drawdevice_colorspaces(dstDev->imageInfo().colorSpace(),
1453 specialImage->getColorSpace());
Florin Malita53f77bd2017-04-28 13:48:37 -04001454 dstDev->drawSpecial(specialImage.get(), pos.x(), pos.y(), *paint,
1455 clipImage, clipMatrix);
Robert Phillips833dcf42016-11-18 08:44:13 -05001456 }
reed@google.com76dd2772012-01-05 21:15:07 +00001457 } else {
Mike Reeda1361362017-03-07 09:37:29 -05001458 dstDev->drawDevice(srcDev, pos.x(), pos.y(), *paint);
reed@google.com76dd2772012-01-05 21:15:07 +00001459 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001460 }
reeda2217ef2016-07-20 06:04:34 -07001461
Mike Reed38992392019-07-30 10:48:15 -04001462 DRAW_END
reed@android.com8a1c16f2008-12-17 15:59:43 +00001463}
1464
reed32704672015-12-16 08:27:10 -08001465/////////////////////////////////////////////////////////////////////////////
reedda420b92015-12-16 08:38:15 -08001466
commit-bot@chromium.org92362382014-03-18 12:51:48 +00001467void SkCanvas::translate(SkScalar dx, SkScalar dy) {
reedfe69b502016-09-12 06:31:48 -07001468 if (dx || dy) {
1469 this->checkForDeferredSave();
Mike Reedb18e74d2020-01-16 13:58:22 -05001470 fMCRec->fMatrix.preTranslate(dx, dy);
mtkleincbdf0072016-08-19 09:05:27 -07001471
reedfe69b502016-09-12 06:31:48 -07001472 // Translate shouldn't affect the is-scale-translateness of the matrix.
Mike Reed403c8072020-01-08 10:40:39 -05001473 // However, if either is non-finite, we might still complicate the matrix type,
1474 // so we still have to compute this.
1475 fIsScaleTranslate = fMCRec->fMatrix.isScaleTranslate();
mtkleincbdf0072016-08-19 09:05:27 -07001476
Mike Reedc42a1cd2017-02-14 14:25:14 -05001477 FOR_EACH_TOP_DEVICE(device->setGlobalCTM(fMCRec->fMatrix));
Mike Reedc42a1cd2017-02-14 14:25:14 -05001478
reedfe69b502016-09-12 06:31:48 -07001479 this->didTranslate(dx,dy);
1480 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001481}
1482
commit-bot@chromium.org92362382014-03-18 12:51:48 +00001483void SkCanvas::scale(SkScalar sx, SkScalar sy) {
Mike Reed9403c382020-01-13 14:40:56 +00001484 if (sx != 1 || sy != 1) {
1485 this->checkForDeferredSave();
1486 fMCRec->fMatrix.preScale(sx, sy);
1487
1488 // shouldn't need to do this (theoretically), as the state shouldn't have changed,
1489 // but pre-scaling by a non-finite does change it, so we have to recompute.
1490 fIsScaleTranslate = fMCRec->fMatrix.isScaleTranslate();
1491
1492 FOR_EACH_TOP_DEVICE(device->setGlobalCTM(fMCRec->fMatrix));
1493
1494 this->didScale(sx, sy);
1495 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001496}
1497
commit-bot@chromium.org92362382014-03-18 12:51:48 +00001498void SkCanvas::rotate(SkScalar degrees) {
commit-bot@chromium.orgd9ea09e2014-03-25 17:32:26 +00001499 SkMatrix m;
1500 m.setRotate(degrees);
1501 this->concat(m);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001502}
1503
bungeman7438bfc2016-07-12 15:01:19 -07001504void SkCanvas::rotate(SkScalar degrees, SkScalar px, SkScalar py) {
1505 SkMatrix m;
1506 m.setRotate(degrees, px, py);
1507 this->concat(m);
1508}
1509
commit-bot@chromium.org92362382014-03-18 12:51:48 +00001510void SkCanvas::skew(SkScalar sx, SkScalar sy) {
commit-bot@chromium.orgd9ea09e2014-03-25 17:32:26 +00001511 SkMatrix m;
1512 m.setSkew(sx, sy);
1513 this->concat(m);
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +00001514}
1515
commit-bot@chromium.org92362382014-03-18 12:51:48 +00001516void SkCanvas::concat(const SkMatrix& matrix) {
commit-bot@chromium.orgd9ea09e2014-03-25 17:32:26 +00001517 if (matrix.isIdentity()) {
1518 return;
1519 }
1520
reed2ff1fce2014-12-11 07:07:37 -08001521 this->checkForDeferredSave();
reed1f836ee2014-07-07 07:49:34 -07001522 fMCRec->fMatrix.preConcat(matrix);
Mike Reedb18e74d2020-01-16 13:58:22 -05001523
msarett9637ea92016-08-18 14:03:30 -07001524 fIsScaleTranslate = fMCRec->fMatrix.isScaleTranslate();
Mike Reed7627fa52017-02-08 10:07:53 -05001525
Mike Reed7627fa52017-02-08 10:07:53 -05001526 FOR_EACH_TOP_DEVICE(device->setGlobalCTM(fMCRec->fMatrix));
Mike Reed7627fa52017-02-08 10:07:53 -05001527
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +00001528 this->didConcat(matrix);
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +00001529}
1530
Mike Reed2f92c932020-04-06 15:44:17 -04001531void SkCanvas::internalConcat44(const SkM44& m) {
Mike Reed403c8072020-01-08 10:40:39 -05001532 this->checkForDeferredSave();
1533
Mike Reed3ef77dd2020-04-06 10:41:09 -04001534 fMCRec->fMatrix.preConcat(m);
Mike Reed403c8072020-01-08 10:40:39 -05001535
1536 fIsScaleTranslate = fMCRec->fMatrix.isScaleTranslate();
1537
1538 FOR_EACH_TOP_DEVICE(device->setGlobalCTM(fMCRec->fMatrix));
Mike Reed2f92c932020-04-06 15:44:17 -04001539}
Mike Reed403c8072020-01-08 10:40:39 -05001540
Mike Reed2f92c932020-04-06 15:44:17 -04001541void SkCanvas::concat(const SkM44& m) {
1542 this->internalConcat44(m);
1543
1544 this->didConcat44(SkMatrixPriv::M44ColMajor(m)); // notify subclasses
Mike Reedee3216d2020-01-17 17:35:04 -05001545}
1546
reed8c30a812016-04-20 16:36:51 -07001547void SkCanvas::internalSetMatrix(const SkMatrix& matrix) {
reed1f836ee2014-07-07 07:49:34 -07001548 fMCRec->fMatrix = matrix;
msarett9da5a5a2016-08-19 08:38:36 -07001549 fIsScaleTranslate = matrix.isScaleTranslate();
Mike Reedc42a1cd2017-02-14 14:25:14 -05001550
Mike Reedc42a1cd2017-02-14 14:25:14 -05001551 FOR_EACH_TOP_DEVICE(device->setGlobalCTM(fMCRec->fMatrix));
reed8c30a812016-04-20 16:36:51 -07001552}
1553
1554void SkCanvas::setMatrix(const SkMatrix& matrix) {
1555 this->checkForDeferredSave();
1556 this->internalSetMatrix(matrix);
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +00001557 this->didSetMatrix(matrix);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001558}
1559
reed@android.com8a1c16f2008-12-17 15:59:43 +00001560void SkCanvas::resetMatrix() {
reed8c30a812016-04-20 16:36:51 -07001561 this->setMatrix(SkMatrix::I());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001562}
1563
1564//////////////////////////////////////////////////////////////////////////////
1565
Mike Reedc1f77742016-12-09 09:00:50 -05001566void SkCanvas::clipRect(const SkRect& rect, SkClipOp op, bool doAA) {
Mike Reed9cec1bc2018-01-19 12:57:01 -05001567 if (!rect.isFinite()) {
1568 return;
1569 }
reed2ff1fce2014-12-11 07:07:37 -08001570 this->checkForDeferredSave();
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001571 ClipEdgeStyle edgeStyle = doAA ? kSoft_ClipEdgeStyle : kHard_ClipEdgeStyle;
1572 this->onClipRect(rect, op, edgeStyle);
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001573}
1574
Mike Reedc1f77742016-12-09 09:00:50 -05001575void SkCanvas::onClipRect(const SkRect& rect, SkClipOp op, ClipEdgeStyle edgeStyle) {
Brian Salomona3b45d42016-10-03 11:36:16 -04001576 const bool isAA = kSoft_ClipEdgeStyle == edgeStyle;
Mike Reed7627fa52017-02-08 10:07:53 -05001577
Mike Reed7627fa52017-02-08 10:07:53 -05001578 FOR_EACH_TOP_DEVICE(device->clipRect(rect, op, isAA));
Mike Reed7627fa52017-02-08 10:07:53 -05001579
reedc64eff52015-11-21 12:39:45 -08001580 AutoValidateClip avc(this);
Mike Reed20800c82017-11-15 16:09:04 -05001581 fMCRec->fRasterClip.opRect(rect, fMCRec->fMatrix, this->getTopLayerBounds(), (SkRegion::Op)op,
1582 isAA);
msarettfbfa2582016-08-12 08:29:08 -07001583 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001584}
1585
Stan Iliev5f1bb0a2016-12-12 17:39:55 -05001586void SkCanvas::androidFramework_setDeviceClipRestriction(const SkIRect& rect) {
1587 fClipRestrictionRect = rect;
Mike Reedd519d482017-02-16 11:04:52 -05001588 if (fClipRestrictionRect.isEmpty()) {
1589 // we notify the device, but we *dont* resolve deferred saves (since we're just
1590 // removing the restriction if the rect is empty. how I hate this api.
Mike Reedd519d482017-02-16 11:04:52 -05001591 FOR_EACH_TOP_DEVICE(device->androidFramework_setDeviceClipRestriction(&fClipRestrictionRect));
Mike Reedd519d482017-02-16 11:04:52 -05001592 } else {
Stan Iliev5f1bb0a2016-12-12 17:39:55 -05001593 this->checkForDeferredSave();
Mike Reedd519d482017-02-16 11:04:52 -05001594 FOR_EACH_TOP_DEVICE(device->androidFramework_setDeviceClipRestriction(&fClipRestrictionRect));
Stan Iliev5f1bb0a2016-12-12 17:39:55 -05001595 AutoValidateClip avc(this);
Mike Reed20800c82017-11-15 16:09:04 -05001596 fMCRec->fRasterClip.opIRect(fClipRestrictionRect, SkRegion::kIntersect_Op);
Stan Iliev5f1bb0a2016-12-12 17:39:55 -05001597 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1598 }
1599}
1600
Mike Reedc1f77742016-12-09 09:00:50 -05001601void SkCanvas::clipRRect(const SkRRect& rrect, SkClipOp op, bool doAA) {
reed2ff1fce2014-12-11 07:07:37 -08001602 this->checkForDeferredSave();
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001603 ClipEdgeStyle edgeStyle = doAA ? kSoft_ClipEdgeStyle : kHard_ClipEdgeStyle;
reed@google.com4ed0fb72012-12-12 20:48:18 +00001604 if (rrect.isRect()) {
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001605 this->onClipRect(rrect.getBounds(), op, edgeStyle);
1606 } else {
1607 this->onClipRRect(rrect, op, edgeStyle);
reed@google.com4ed0fb72012-12-12 20:48:18 +00001608 }
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001609}
commit-bot@chromium.org14e50ae2014-02-16 23:35:31 +00001610
Mike Reedc1f77742016-12-09 09:00:50 -05001611void SkCanvas::onClipRRect(const SkRRect& rrect, SkClipOp op, ClipEdgeStyle edgeStyle) {
Brian Salomona3b45d42016-10-03 11:36:16 -04001612 AutoValidateClip avc(this);
commit-bot@chromium.org14e50ae2014-02-16 23:35:31 +00001613
Brian Salomona3b45d42016-10-03 11:36:16 -04001614 bool isAA = kSoft_ClipEdgeStyle == edgeStyle;
Ben Wagner63fd7602017-10-09 15:45:33 -04001615
Mike Reed7627fa52017-02-08 10:07:53 -05001616 FOR_EACH_TOP_DEVICE(device->clipRRect(rrect, op, isAA));
Mike Reeda1361362017-03-07 09:37:29 -05001617
Mike Reed20800c82017-11-15 16:09:04 -05001618 fMCRec->fRasterClip.opRRect(rrect, fMCRec->fMatrix, this->getTopLayerBounds(), (SkRegion::Op)op,
1619 isAA);
Brian Salomona3b45d42016-10-03 11:36:16 -04001620 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
reed@google.com4ed0fb72012-12-12 20:48:18 +00001621}
1622
Mike Reedc1f77742016-12-09 09:00:50 -05001623void SkCanvas::clipPath(const SkPath& path, SkClipOp op, bool doAA) {
reed2ff1fce2014-12-11 07:07:37 -08001624 this->checkForDeferredSave();
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001625 ClipEdgeStyle edgeStyle = doAA ? kSoft_ClipEdgeStyle : kHard_ClipEdgeStyle;
robertphillips39f05382015-11-24 09:30:12 -08001626
1627 if (!path.isInverseFillType() && fMCRec->fMatrix.rectStaysRect()) {
1628 SkRect r;
1629 if (path.isRect(&r)) {
1630 this->onClipRect(r, op, edgeStyle);
1631 return;
1632 }
1633 SkRRect rrect;
1634 if (path.isOval(&r)) {
1635 rrect.setOval(r);
1636 this->onClipRRect(rrect, op, edgeStyle);
1637 return;
1638 }
1639 if (path.isRRect(&rrect)) {
1640 this->onClipRRect(rrect, op, edgeStyle);
1641 return;
1642 }
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001643 }
robertphillips39f05382015-11-24 09:30:12 -08001644
1645 this->onClipPath(path, op, edgeStyle);
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001646}
1647
Mike Reedc1f77742016-12-09 09:00:50 -05001648void SkCanvas::onClipPath(const SkPath& path, SkClipOp op, ClipEdgeStyle edgeStyle) {
reed@google.com5c3d1472011-02-22 19:12:23 +00001649 AutoValidateClip avc(this);
1650
Brian Salomona3b45d42016-10-03 11:36:16 -04001651 bool isAA = kSoft_ClipEdgeStyle == edgeStyle;
Ben Wagner63fd7602017-10-09 15:45:33 -04001652
Mike Reed7627fa52017-02-08 10:07:53 -05001653 FOR_EACH_TOP_DEVICE(device->clipPath(path, op, isAA));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001654
Brian Salomona3b45d42016-10-03 11:36:16 -04001655 const SkPath* rasterClipPath = &path;
Mike Reed403c8072020-01-08 10:40:39 -05001656 fMCRec->fRasterClip.opPath(*rasterClipPath, fMCRec->fMatrix, this->getTopLayerBounds(),
Mike Reed20800c82017-11-15 16:09:04 -05001657 (SkRegion::Op)op, isAA);
msarettfbfa2582016-08-12 08:29:08 -07001658 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001659}
1660
Mike Reed121c2af2020-03-10 14:02:56 -04001661void SkCanvas::clipShader(sk_sp<SkShader> sh, SkClipOp op) {
1662 if (sh) {
Mike Reedbf355122020-03-10 17:10:04 -04001663 if (sh->isOpaque()) {
1664 if (op == SkClipOp::kIntersect) {
1665 // we don't occlude anything, so skip this call
1666 } else {
1667 SkASSERT(op == SkClipOp::kDifference);
1668 // we occlude everything, so set the clip to empty
1669 this->clipRect({0,0,0,0});
1670 }
1671 } else {
1672 this->onClipShader(std::move(sh), op);
1673 }
Mike Reed121c2af2020-03-10 14:02:56 -04001674 }
1675}
1676
1677void SkCanvas::onClipShader(sk_sp<SkShader> sh, SkClipOp op) {
1678 AutoValidateClip avc(this);
1679
1680 FOR_EACH_TOP_DEVICE(device->clipShader(sh, op));
1681
1682 // we don't know how to mutate our conservative bounds, so we don't
1683}
1684
Mike Reedc1f77742016-12-09 09:00:50 -05001685void SkCanvas::clipRegion(const SkRegion& rgn, SkClipOp op) {
reed2ff1fce2014-12-11 07:07:37 -08001686 this->checkForDeferredSave();
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001687 this->onClipRegion(rgn, op);
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001688}
1689
Mike Reedc1f77742016-12-09 09:00:50 -05001690void SkCanvas::onClipRegion(const SkRegion& rgn, SkClipOp op) {
Mike Reed7627fa52017-02-08 10:07:53 -05001691 FOR_EACH_TOP_DEVICE(device->clipRegion(rgn, op));
Mike Reeda1361362017-03-07 09:37:29 -05001692
reed@google.com5c3d1472011-02-22 19:12:23 +00001693 AutoValidateClip avc(this);
1694
Mike Reed20800c82017-11-15 16:09:04 -05001695 fMCRec->fRasterClip.opRegion(rgn, (SkRegion::Op)op);
msarettfbfa2582016-08-12 08:29:08 -07001696 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001697}
1698
reed@google.com819c9212011-02-23 18:56:55 +00001699#ifdef SK_DEBUG
1700void SkCanvas::validateClip() const {
1701 // construct clipRgn from the clipstack
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001702 const SkBaseDevice* device = this->getDevice();
djsollen@google.comccfee2a2012-05-01 16:50:10 +00001703 if (!device) {
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +00001704 SkASSERT(this->isClipEmpty());
djsollen@google.comccfee2a2012-05-01 16:50:10 +00001705 return;
1706 }
reed@google.com819c9212011-02-23 18:56:55 +00001707}
1708#endif
1709
Mike Reeda1361362017-03-07 09:37:29 -05001710bool SkCanvas::androidFramework_isClipAA() const {
1711 bool containsAA = false;
1712
1713 FOR_EACH_TOP_DEVICE(containsAA |= device->onClipIsAA());
1714
1715 return containsAA;
1716}
1717
1718class RgnAccumulator {
1719 SkRegion* fRgn;
1720public:
1721 RgnAccumulator(SkRegion* total) : fRgn(total) {}
1722 void accumulate(SkBaseDevice* device, SkRegion* rgn) {
1723 SkIPoint origin = device->getOrigin();
1724 if (origin.x() | origin.y()) {
1725 rgn->translate(origin.x(), origin.y());
1726 }
1727 fRgn->op(*rgn, SkRegion::kUnion_Op);
1728 }
1729};
1730
1731void SkCanvas::temporary_internal_getRgnClip(SkRegion* rgn) {
1732 RgnAccumulator accum(rgn);
1733 SkRegion tmp;
1734
1735 rgn->setEmpty();
1736 FOR_EACH_TOP_DEVICE(device->onAsRgnClip(&tmp); accum.accumulate(device, &tmp));
reed@google.com90c07ea2012-04-13 13:50:27 +00001737}
1738
reed@google.com5c3d1472011-02-22 19:12:23 +00001739///////////////////////////////////////////////////////////////////////////////
1740
reed@google.com754de5f2014-02-24 19:38:20 +00001741bool SkCanvas::isClipEmpty() const {
Mike Reed02be3c12017-03-23 12:34:15 -04001742 return fMCRec->fRasterClip.isEmpty();
1743
1744 // TODO: should we only use the conservative answer in a recording canvas?
1745#if 0
Mike Reeda1361362017-03-07 09:37:29 -05001746 SkBaseDevice* dev = this->getTopDevice();
1747 // if no device we return true
1748 return !dev || dev->onGetClipType() == SkBaseDevice::kEmpty_ClipType;
Mike Reed02be3c12017-03-23 12:34:15 -04001749#endif
reed@google.com754de5f2014-02-24 19:38:20 +00001750}
1751
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +00001752bool SkCanvas::isClipRect() const {
Mike Reeda1361362017-03-07 09:37:29 -05001753 SkBaseDevice* dev = this->getTopDevice();
1754 // if no device we return false
Dave Tapuska7139f132019-08-15 09:22:11 -04001755 return dev && dev->onGetClipType() == SkBaseDevice::ClipType::kRect;
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +00001756}
1757
msarettfbfa2582016-08-12 08:29:08 -07001758static inline bool is_nan_or_clipped(const Sk4f& devRect, const Sk4f& devClip) {
1759#if !defined(SKNX_NO_SIMD) && SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
1760 __m128 lLtT = _mm_unpacklo_ps(devRect.fVec, devClip.fVec);
1761 __m128 RrBb = _mm_unpackhi_ps(devClip.fVec, devRect.fVec);
1762 __m128 mask = _mm_cmplt_ps(lLtT, RrBb);
1763 return 0xF != _mm_movemask_ps(mask);
1764#elif !defined(SKNX_NO_SIMD) && defined(SK_ARM_HAS_NEON)
1765 float32x4_t lLtT = vzipq_f32(devRect.fVec, devClip.fVec).val[0];
1766 float32x4_t RrBb = vzipq_f32(devClip.fVec, devRect.fVec).val[1];
1767 uint32x4_t mask = vcltq_f32(lLtT, RrBb);
1768 return 0xFFFFFFFFFFFFFFFF != (uint64_t) vmovn_u32(mask);
1769#else
1770 SkRect devRectAsRect;
1771 SkRect devClipAsRect;
1772 devRect.store(&devRectAsRect.fLeft);
1773 devClip.store(&devClipAsRect.fLeft);
1774 return !devRectAsRect.isFinite() || !devRectAsRect.intersect(devClipAsRect);
1775#endif
1776}
wjmaclean@chromium.org116b2bc2011-02-07 17:48:37 +00001777
msarettfbfa2582016-08-12 08:29:08 -07001778// It's important for this function to not be inlined. Otherwise the compiler will share code
1779// between the fast path and the slow path, resulting in two slow paths.
1780static SK_NEVER_INLINE bool quick_reject_slow_path(const SkRect& src, const SkRect& deviceClip,
1781 const SkMatrix& matrix) {
1782 SkRect deviceRect;
1783 matrix.mapRect(&deviceRect, src);
1784 return !deviceRect.isFinite() || !deviceRect.intersect(deviceClip);
1785}
1786
1787bool SkCanvas::quickReject(const SkRect& src) const {
1788#ifdef SK_DEBUG
1789 // Verify that fDeviceClipBounds are set properly.
1790 SkRect tmp = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
reed1f836ee2014-07-07 07:49:34 -07001791 if (fMCRec->fRasterClip.isEmpty()) {
msarett0c685ee2016-08-14 13:51:16 -07001792 SkASSERT(fDeviceClipBounds.isEmpty());
reed@android.coma380ae42009-07-21 01:17:02 +00001793 } else {
msarettfbfa2582016-08-12 08:29:08 -07001794 SkASSERT(tmp == fDeviceClipBounds);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001795 }
msarettfbfa2582016-08-12 08:29:08 -07001796
msarett9637ea92016-08-18 14:03:30 -07001797 // Verify that fIsScaleTranslate is set properly.
1798 SkASSERT(fIsScaleTranslate == fMCRec->fMatrix.isScaleTranslate());
msarettfbfa2582016-08-12 08:29:08 -07001799#endif
1800
msarett9637ea92016-08-18 14:03:30 -07001801 if (!fIsScaleTranslate) {
msarettfbfa2582016-08-12 08:29:08 -07001802 return quick_reject_slow_path(src, fDeviceClipBounds, fMCRec->fMatrix);
1803 }
1804
1805 // We inline the implementation of mapScaleTranslate() for the fast path.
1806 float sx = fMCRec->fMatrix.getScaleX();
1807 float sy = fMCRec->fMatrix.getScaleY();
1808 float tx = fMCRec->fMatrix.getTranslateX();
1809 float ty = fMCRec->fMatrix.getTranslateY();
1810 Sk4f scale(sx, sy, sx, sy);
1811 Sk4f trans(tx, ty, tx, ty);
1812
1813 // Apply matrix.
1814 Sk4f ltrb = Sk4f::Load(&src.fLeft) * scale + trans;
1815
1816 // Make sure left < right, top < bottom.
1817 Sk4f rblt(ltrb[2], ltrb[3], ltrb[0], ltrb[1]);
1818 Sk4f min = Sk4f::Min(ltrb, rblt);
1819 Sk4f max = Sk4f::Max(ltrb, rblt);
1820 // We can extract either pair [0,1] or [2,3] from min and max and be correct, but on
1821 // ARM this sequence generates the fastest (a single instruction).
1822 Sk4f devRect = Sk4f(min[2], min[3], max[0], max[1]);
1823
1824 // Check if the device rect is NaN or outside the clip.
1825 return is_nan_or_clipped(devRect, Sk4f::Load(&fDeviceClipBounds.fLeft));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001826}
1827
reed@google.com3b3e8952012-08-16 20:53:31 +00001828bool SkCanvas::quickReject(const SkPath& path) const {
1829 return path.isEmpty() || this->quickReject(path.getBounds());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001830}
1831
Mike Klein83c8dd92017-11-28 17:08:45 -05001832SkRect SkCanvas::getLocalClipBounds() const {
1833 SkIRect ibounds = this->getDeviceClipBounds();
Mike Reed918e1442017-01-23 11:39:45 -05001834 if (ibounds.isEmpty()) {
Mike Reed42e8c532017-01-23 14:09:13 -05001835 return SkRect::MakeEmpty();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001836 }
1837
reed@android.comd9c0f0b2009-02-06 22:39:37 +00001838 SkMatrix inverse;
1839 // if we can't invert the CTM, we can't return local clip bounds
Mike Reedb18e74d2020-01-16 13:58:22 -05001840 if (!fMCRec->fMatrix.asM33().invert(&inverse)) {
Mike Reed42e8c532017-01-23 14:09:13 -05001841 return SkRect::MakeEmpty();
reed@android.comd9c0f0b2009-02-06 22:39:37 +00001842 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001843
Mike Reed42e8c532017-01-23 14:09:13 -05001844 SkRect bounds;
Mike Reed42e8c532017-01-23 14:09:13 -05001845 // adjust it outwards in case we are antialiasing
Mike Reedb57b9312018-04-23 12:12:54 -04001846 const int margin = 1;
reed@google.comfa4d5bd2012-01-30 17:36:27 +00001847
Mike Reedb57b9312018-04-23 12:12:54 -04001848 SkRect r = SkRect::Make(ibounds.makeOutset(margin, margin));
Mike Reed42e8c532017-01-23 14:09:13 -05001849 inverse.mapRect(&bounds, r);
1850 return bounds;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001851}
1852
Mike Klein83c8dd92017-11-28 17:08:45 -05001853SkIRect SkCanvas::getDeviceClipBounds() const {
Mike Reeda1361362017-03-07 09:37:29 -05001854 return fMCRec->fRasterClip.getBounds();
tomhudson@google.combcb671c2011-09-13 15:07:58 +00001855}
1856
Mike Reedb18e74d2020-01-16 13:58:22 -05001857///////////////////////////////////////////////////////////////////////
1858
1859SkCanvas::CameraRec::CameraRec(MCRec* owner, const SkM44& camera)
1860 : fMCRec(owner)
1861 , fCamera(camera)
1862{
1863 // assumes the mcrec has already been concatenated with the camera
1864 if (!owner->fMatrix.invert(&fInvPostCamera)) {
1865 fInvPostCamera.setIdentity();
1866 }
1867}
1868
Mike Reed403c8072020-01-08 10:40:39 -05001869SkMatrix SkCanvas::getTotalMatrix() const {
reed1f836ee2014-07-07 07:49:34 -07001870 return fMCRec->fMatrix;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001871}
1872
Mike Reed46f5c5f2020-02-20 15:42:29 -05001873SkM44 SkCanvas::getLocalToDevice() const {
Mike Reed75435872020-01-13 21:15:06 -05001874 return fMCRec->fMatrix;
1875}
1876
Mike Reedc43f2a02020-01-16 14:54:34 -05001877SkM44 SkCanvas::experimental_getLocalToWorld() const {
Mike Reedb18e74d2020-01-16 13:58:22 -05001878 if (fCameraStack.empty()) {
Mike Reed46f5c5f2020-02-20 15:42:29 -05001879 return this->getLocalToDevice();
Mike Reedb18e74d2020-01-16 13:58:22 -05001880 } else {
1881 const auto& top = fCameraStack.back();
Mike Reed46f5c5f2020-02-20 15:42:29 -05001882 return top.fInvPostCamera * this->getLocalToDevice();
Mike Reedb18e74d2020-01-16 13:58:22 -05001883 }
1884}
1885
Mike Reedc43f2a02020-01-16 14:54:34 -05001886SkM44 SkCanvas::experimental_getLocalToCamera() const {
Mike Reedb18e74d2020-01-16 13:58:22 -05001887 if (fCameraStack.empty()) {
Mike Reed46f5c5f2020-02-20 15:42:29 -05001888 return this->getLocalToDevice();
Mike Reedb18e74d2020-01-16 13:58:22 -05001889 } else {
1890 const auto& top = fCameraStack.back();
Mike Reed46f5c5f2020-02-20 15:42:29 -05001891 return top.fCamera * top.fInvPostCamera * this->getLocalToDevice();
Mike Reedb18e74d2020-01-16 13:58:22 -05001892 }
1893}
1894
Brian Osman11052242016-10-27 14:47:55 -04001895GrRenderTargetContext* SkCanvas::internal_private_accessTopLayerRenderTargetContext() {
reed@google.com9c135db2014-03-12 18:28:35 +00001896 SkBaseDevice* dev = this->getTopDevice();
Brian Osman11052242016-10-27 14:47:55 -04001897 return dev ? dev->accessRenderTargetContext() : nullptr;
reed@google.com9c135db2014-03-12 18:28:35 +00001898}
1899
commit-bot@chromium.org644629c2013-11-21 06:21:58 +00001900GrContext* SkCanvas::getGrContext() {
commit-bot@chromium.org644629c2013-11-21 06:21:58 +00001901 SkBaseDevice* device = this->getTopDevice();
reed86ae3d12016-04-26 06:57:31 -07001902 return device ? device->context() : nullptr;
commit-bot@chromium.org644629c2013-11-21 06:21:58 +00001903}
bsalomon@google.come97f0852011-06-17 13:10:25 +00001904
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00001905void SkCanvas::drawDRRect(const SkRRect& outer, const SkRRect& inner,
1906 const SkPaint& paint) {
Brian Osman39c08ac2017-07-26 09:36:09 -04001907 TRACE_EVENT0("skia", TRACE_FUNC);
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00001908 if (outer.isEmpty()) {
1909 return;
1910 }
1911 if (inner.isEmpty()) {
1912 this->drawRRect(outer, paint);
1913 return;
1914 }
1915
1916 // We don't have this method (yet), but technically this is what we should
Cary Clarke0b72872017-04-12 12:03:15 -04001917 // be able to return ...
1918 // if (!outer.contains(inner))) {
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00001919 //
1920 // For now at least check for containment of bounds
Cary Clarke0b72872017-04-12 12:03:15 -04001921 if (!outer.getBounds().contains(inner.getBounds())) {
1922 return;
1923 }
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00001924
1925 this->onDrawDRRect(outer, inner, paint);
1926}
1927
reed41af9662015-01-05 07:49:08 -08001928void SkCanvas::drawPaint(const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04001929 TRACE_EVENT0("skia", TRACE_FUNC);
reed41af9662015-01-05 07:49:08 -08001930 this->onDrawPaint(paint);
1931}
1932
1933void SkCanvas::drawRect(const SkRect& r, const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04001934 TRACE_EVENT0("skia", TRACE_FUNC);
Brian Osman6e3ce402017-05-17 15:10:18 -04001935 // To avoid redundant logic in our culling code and various backends, we always sort rects
1936 // before passing them along.
1937 this->onDrawRect(r.makeSorted(), paint);
reed41af9662015-01-05 07:49:08 -08001938}
1939
Mike Reedd5674082019-04-19 15:00:47 -04001940void SkCanvas::drawClippedToSaveBehind(const SkPaint& paint) {
1941 TRACE_EVENT0("skia", TRACE_FUNC);
1942 this->onDrawBehind(paint);
1943}
1944
msarettdca352e2016-08-26 06:37:45 -07001945void SkCanvas::drawRegion(const SkRegion& region, const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04001946 TRACE_EVENT0("skia", TRACE_FUNC);
msarettdca352e2016-08-26 06:37:45 -07001947 if (region.isEmpty()) {
1948 return;
1949 }
1950
1951 if (region.isRect()) {
1952 return this->drawIRect(region.getBounds(), paint);
1953 }
1954
1955 this->onDrawRegion(region, paint);
1956}
1957
reed41af9662015-01-05 07:49:08 -08001958void SkCanvas::drawOval(const SkRect& r, const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04001959 TRACE_EVENT0("skia", TRACE_FUNC);
Brian Osman6e3ce402017-05-17 15:10:18 -04001960 // To avoid redundant logic in our culling code and various backends, we always sort rects
1961 // before passing them along.
1962 this->onDrawOval(r.makeSorted(), paint);
reed41af9662015-01-05 07:49:08 -08001963}
1964
1965void SkCanvas::drawRRect(const SkRRect& rrect, const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04001966 TRACE_EVENT0("skia", TRACE_FUNC);
reed41af9662015-01-05 07:49:08 -08001967 this->onDrawRRect(rrect, paint);
1968}
1969
1970void SkCanvas::drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04001971 TRACE_EVENT0("skia", TRACE_FUNC);
reed41af9662015-01-05 07:49:08 -08001972 this->onDrawPoints(mode, count, pts, paint);
1973}
1974
Mike Reede88a1cb2017-03-17 09:50:46 -04001975void SkCanvas::drawVertices(const sk_sp<SkVertices>& vertices, SkBlendMode mode,
1976 const SkPaint& paint) {
Mike Reed5caf9352020-03-02 14:57:09 -05001977 this->drawVertices(vertices.get(), mode, paint);
Mike Reede88a1cb2017-03-17 09:50:46 -04001978}
1979
1980void SkCanvas::drawVertices(const SkVertices* vertices, SkBlendMode mode, const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04001981 TRACE_EVENT0("skia", TRACE_FUNC);
Mike Reede88a1cb2017-03-17 09:50:46 -04001982 RETURN_ON_NULL(vertices);
Brian Osmanf11e3312020-03-24 14:57:38 -04001983
Mike Reed5caf9352020-03-02 14:57:09 -05001984 // We expect fans to be converted to triangles when building or deserializing SkVertices.
Brian Osman8cbedf92020-03-31 10:38:31 -04001985 SkASSERT(vertices->priv().mode() != SkVertices::kTriangleFan_VertexMode);
Brian Osmanf11e3312020-03-24 14:57:38 -04001986
1987 // If the vertices contain custom attributes, ensure they line up with the paint's shader
1988 const SkRuntimeEffect* effect =
1989 paint.getShader() ? as_SB(paint.getShader())->asRuntimeEffect() : nullptr;
Brian Osmanffd11f4a2020-03-30 09:57:53 -04001990 if ((size_t)vertices->priv().attributeCount() != (effect ? effect->varyings().count() : 0)) {
Brian Osmanf11e3312020-03-24 14:57:38 -04001991 return;
1992 }
Brian Osmanffd11f4a2020-03-30 09:57:53 -04001993 if (effect) {
1994 int attrIndex = 0;
1995 for (const auto& v : effect->varyings()) {
1996 if (vertices->priv().attributes()[attrIndex++].channelCount() != v.fWidth) {
1997 return;
1998 }
1999 }
2000 }
Brian Osmanf11e3312020-03-24 14:57:38 -04002001
Mike Reed5caf9352020-03-02 14:57:09 -05002002 this->onDrawVerticesObject(vertices, mode, paint);
reed41af9662015-01-05 07:49:08 -08002003}
2004
2005void SkCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002006 TRACE_EVENT0("skia", TRACE_FUNC);
reed41af9662015-01-05 07:49:08 -08002007 this->onDrawPath(path, paint);
2008}
2009
reeda85d4d02015-05-06 12:56:48 -07002010void SkCanvas::drawImage(const SkImage* image, SkScalar x, SkScalar y, const SkPaint* paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002011 TRACE_EVENT0("skia", TRACE_FUNC);
reede3b38ce2016-01-08 09:18:44 -08002012 RETURN_ON_NULL(image);
reeda85d4d02015-05-06 12:56:48 -07002013 this->onDrawImage(image, x, y, paint);
reed41af9662015-01-05 07:49:08 -08002014}
2015
Mike Reedc4e31092018-01-30 11:15:27 -05002016// Returns true if the rect can be "filled" : non-empty and finite
2017static bool fillable(const SkRect& r) {
2018 SkScalar w = r.width();
2019 SkScalar h = r.height();
2020 return SkScalarIsFinite(w) && w > 0 && SkScalarIsFinite(h) && h > 0;
2021}
2022
reede47829b2015-08-06 10:02:53 -07002023void SkCanvas::drawImageRect(const SkImage* image, const SkRect& src, const SkRect& dst,
2024 const SkPaint* paint, SrcRectConstraint constraint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002025 TRACE_EVENT0("skia", TRACE_FUNC);
reede3b38ce2016-01-08 09:18:44 -08002026 RETURN_ON_NULL(image);
Mike Reedc4e31092018-01-30 11:15:27 -05002027 if (!fillable(dst) || !fillable(src)) {
reede47829b2015-08-06 10:02:53 -07002028 return;
2029 }
2030 this->onDrawImageRect(image, &src, dst, paint, constraint);
2031}
reed41af9662015-01-05 07:49:08 -08002032
reed84984ef2015-07-17 07:09:43 -07002033void SkCanvas::drawImageRect(const SkImage* image, const SkIRect& isrc, const SkRect& dst,
2034 const SkPaint* paint, SrcRectConstraint constraint) {
reede3b38ce2016-01-08 09:18:44 -08002035 RETURN_ON_NULL(image);
reede47829b2015-08-06 10:02:53 -07002036 this->drawImageRect(image, SkRect::Make(isrc), dst, paint, constraint);
reed84984ef2015-07-17 07:09:43 -07002037}
2038
Brian Salomonf08002c2018-10-26 16:15:46 -04002039void SkCanvas::drawImageRect(const SkImage* image, const SkRect& dst, const SkPaint* paint) {
reede3b38ce2016-01-08 09:18:44 -08002040 RETURN_ON_NULL(image);
reede47829b2015-08-06 10:02:53 -07002041 this->drawImageRect(image, SkRect::MakeIWH(image->width(), image->height()), dst, paint,
Brian Salomonf08002c2018-10-26 16:15:46 -04002042 kFast_SrcRectConstraint);
reede47829b2015-08-06 10:02:53 -07002043}
reede47829b2015-08-06 10:02:53 -07002044
Leon Scroggins III57e1f022018-04-20 14:53:00 -04002045namespace {
Brian Salomon969be1c2018-05-21 14:37:49 -04002046class LatticePaint : SkNoncopyable {
Leon Scroggins III57e1f022018-04-20 14:53:00 -04002047public:
Brian Salomon969be1c2018-05-21 14:37:49 -04002048 LatticePaint(const SkPaint* origPaint) : fPaint(origPaint) {
2049 if (!origPaint) {
2050 return;
2051 }
2052 if (origPaint->getFilterQuality() > kLow_SkFilterQuality) {
2053 fPaint.writable()->setFilterQuality(kLow_SkFilterQuality);
2054 }
2055 if (origPaint->getMaskFilter()) {
2056 fPaint.writable()->setMaskFilter(nullptr);
2057 }
2058 if (origPaint->isAntiAlias()) {
2059 fPaint.writable()->setAntiAlias(false);
Leon Scroggins III57e1f022018-04-20 14:53:00 -04002060 }
2061 }
2062
2063 const SkPaint* get() const {
2064 return fPaint;
2065 }
2066
2067private:
Brian Salomon969be1c2018-05-21 14:37:49 -04002068 SkTCopyOnFirstWrite<SkPaint> fPaint;
Leon Scroggins III57e1f022018-04-20 14:53:00 -04002069};
2070} // namespace
2071
reed4c21dc52015-06-25 12:32:03 -07002072void SkCanvas::drawImageNine(const SkImage* image, const SkIRect& center, const SkRect& dst,
2073 const SkPaint* paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002074 TRACE_EVENT0("skia", TRACE_FUNC);
reede3b38ce2016-01-08 09:18:44 -08002075 RETURN_ON_NULL(image);
reed4c21dc52015-06-25 12:32:03 -07002076 if (dst.isEmpty()) {
2077 return;
2078 }
msarett552bca92016-08-03 06:53:26 -07002079 if (SkLatticeIter::Valid(image->width(), image->height(), center)) {
Brian Salomon969be1c2018-05-21 14:37:49 -04002080 LatticePaint latticePaint(paint);
2081 this->onDrawImageNine(image, center, dst, latticePaint.get());
msarett552bca92016-08-03 06:53:26 -07002082 } else {
reede47829b2015-08-06 10:02:53 -07002083 this->drawImageRect(image, dst, paint);
reed4c21dc52015-06-25 12:32:03 -07002084 }
reed4c21dc52015-06-25 12:32:03 -07002085}
2086
msarett16882062016-08-16 09:31:08 -07002087void SkCanvas::drawImageLattice(const SkImage* image, const Lattice& lattice, const SkRect& dst,
2088 const SkPaint* paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002089 TRACE_EVENT0("skia", TRACE_FUNC);
msarett16882062016-08-16 09:31:08 -07002090 RETURN_ON_NULL(image);
2091 if (dst.isEmpty()) {
2092 return;
2093 }
msarett71df2d72016-09-30 12:41:42 -07002094
2095 SkIRect bounds;
2096 Lattice latticePlusBounds = lattice;
2097 if (!latticePlusBounds.fBounds) {
2098 bounds = SkIRect::MakeWH(image->width(), image->height());
2099 latticePlusBounds.fBounds = &bounds;
2100 }
2101
2102 if (SkLatticeIter::Valid(image->width(), image->height(), latticePlusBounds)) {
Brian Salomon969be1c2018-05-21 14:37:49 -04002103 LatticePaint latticePaint(paint);
2104 this->onDrawImageLattice(image, latticePlusBounds, dst, latticePaint.get());
msarett16882062016-08-16 09:31:08 -07002105 } else {
2106 this->drawImageRect(image, dst, paint);
2107 }
2108}
2109
Michael Ludwigb0cee9b2020-03-12 10:52:15 -04002110static sk_sp<SkImage> bitmap_as_image(const SkBitmap& bitmap) {
reed4c21dc52015-06-25 12:32:03 -07002111 if (bitmap.drawsNothing()) {
Michael Ludwigb0cee9b2020-03-12 10:52:15 -04002112 return nullptr;
tomhudson2df6fd62015-04-09 09:20:19 -07002113 }
Michael Ludwigb0cee9b2020-03-12 10:52:15 -04002114 return SkImage::MakeFromBitmap(bitmap);
2115}
2116
2117void SkCanvas::drawBitmap(const SkBitmap& bitmap, SkScalar dx, SkScalar dy, const SkPaint* paint) {
2118 this->drawImage(bitmap_as_image(bitmap), dx, dy, paint);
reed41af9662015-01-05 07:49:08 -08002119}
2120
reede47829b2015-08-06 10:02:53 -07002121void SkCanvas::drawBitmapRect(const SkBitmap& bitmap, const SkRect& src, const SkRect& dst,
reeda5517e22015-07-14 10:54:12 -07002122 const SkPaint* paint, SrcRectConstraint constraint) {
Michael Ludwigb0cee9b2020-03-12 10:52:15 -04002123 this->drawImageRect(bitmap_as_image(bitmap), src, dst, paint, constraint);
reed41af9662015-01-05 07:49:08 -08002124}
2125
reed84984ef2015-07-17 07:09:43 -07002126void SkCanvas::drawBitmapRect(const SkBitmap& bitmap, const SkIRect& isrc, const SkRect& dst,
2127 const SkPaint* paint, SrcRectConstraint constraint) {
reede47829b2015-08-06 10:02:53 -07002128 this->drawBitmapRect(bitmap, SkRect::Make(isrc), dst, paint, constraint);
reed84984ef2015-07-17 07:09:43 -07002129}
2130
reede47829b2015-08-06 10:02:53 -07002131void SkCanvas::drawBitmapRect(const SkBitmap& bitmap, const SkRect& dst, const SkPaint* paint,
2132 SrcRectConstraint constraint) {
2133 this->drawBitmapRect(bitmap, SkRect::MakeIWH(bitmap.width(), bitmap.height()), dst, paint,
2134 constraint);
2135}
reede47829b2015-08-06 10:02:53 -07002136
reed71c3c762015-06-24 10:29:17 -07002137void SkCanvas::drawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect tex[],
Mike Reed7d954ad2016-10-28 15:42:34 -04002138 const SkColor colors[], int count, SkBlendMode mode,
reed71c3c762015-06-24 10:29:17 -07002139 const SkRect* cull, const SkPaint* paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002140 TRACE_EVENT0("skia", TRACE_FUNC);
reede3b38ce2016-01-08 09:18:44 -08002141 RETURN_ON_NULL(atlas);
reed71c3c762015-06-24 10:29:17 -07002142 if (count <= 0) {
2143 return;
2144 }
Joe Gregorioc4859072017-01-20 14:21:27 +00002145 SkASSERT(atlas);
reed71c3c762015-06-24 10:29:17 -07002146 SkASSERT(tex);
Mike Reedfaba3712016-11-03 14:45:31 -04002147 this->onDrawAtlas(atlas, xform, tex, colors, count, mode, cull, paint);
reed71c3c762015-06-24 10:29:17 -07002148}
2149
reedf70b5312016-03-04 16:36:20 -08002150void SkCanvas::drawAnnotation(const SkRect& rect, const char key[], SkData* value) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002151 TRACE_EVENT0("skia", TRACE_FUNC);
reedf70b5312016-03-04 16:36:20 -08002152 if (key) {
2153 this->onDrawAnnotation(rect, key, value);
2154 }
2155}
2156
reede47829b2015-08-06 10:02:53 -07002157void SkCanvas::legacy_drawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
2158 const SkPaint* paint, SrcRectConstraint constraint) {
2159 if (src) {
2160 this->drawImageRect(image, *src, dst, paint, constraint);
2161 } else {
2162 this->drawImageRect(image, SkRect::MakeIWH(image->width(), image->height()),
2163 dst, paint, constraint);
2164 }
2165}
reede47829b2015-08-06 10:02:53 -07002166
Mike Reed4204da22017-05-17 08:53:36 -04002167void SkCanvas::private_draw_shadow_rec(const SkPath& path, const SkDrawShadowRec& rec) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002168 TRACE_EVENT0("skia", TRACE_FUNC);
Mike Reed4204da22017-05-17 08:53:36 -04002169 this->onDrawShadowRec(path, rec);
2170}
2171
2172void SkCanvas::onDrawShadowRec(const SkPath& path, const SkDrawShadowRec& rec) {
2173 SkPaint paint;
2174 const SkRect& pathBounds = path.getBounds();
2175
Mike Reed38992392019-07-30 10:48:15 -04002176 DRAW_BEGIN(paint, &pathBounds)
Mike Reed4204da22017-05-17 08:53:36 -04002177 while (iter.next()) {
2178 iter.fDevice->drawShadow(path, rec);
2179 }
Mike Reed38992392019-07-30 10:48:15 -04002180 DRAW_END
Mike Reed4204da22017-05-17 08:53:36 -04002181}
2182
Michael Ludwig390f0cc2019-03-19 09:16:38 -04002183void SkCanvas::experimental_DrawEdgeAAQuad(const SkRect& rect, const SkPoint clip[4],
Michael Ludwiga595f862019-08-27 15:25:49 -04002184 QuadAAFlags aaFlags, const SkColor4f& color,
2185 SkBlendMode mode) {
Michael Ludwig390f0cc2019-03-19 09:16:38 -04002186 TRACE_EVENT0("skia", TRACE_FUNC);
2187 // Make sure the rect is sorted before passing it along
2188 this->onDrawEdgeAAQuad(rect.makeSorted(), clip, aaFlags, color, mode);
2189}
2190
2191void SkCanvas::experimental_DrawEdgeAAImageSet(const ImageSetEntry imageSet[], int cnt,
2192 const SkPoint dstClips[],
2193 const SkMatrix preViewMatrices[],
2194 const SkPaint* paint,
2195 SrcRectConstraint constraint) {
2196 TRACE_EVENT0("skia", TRACE_FUNC);
2197 this->onDrawEdgeAAImageSet(imageSet, cnt, dstClips, preViewMatrices, paint, constraint);
2198}
2199
reed@android.com8a1c16f2008-12-17 15:59:43 +00002200//////////////////////////////////////////////////////////////////////////////
2201// These are the virtual drawing methods
2202//////////////////////////////////////////////////////////////////////////////
2203
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00002204void SkCanvas::onDiscard() {
bsalomon49f085d2014-09-05 13:34:00 -07002205 if (fSurfaceBase) {
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00002206 fSurfaceBase->aboutToDraw(SkSurface::kDiscard_ContentChangeMode);
2207 }
2208}
2209
reed41af9662015-01-05 07:49:08 -08002210void SkCanvas::onDrawPaint(const SkPaint& paint) {
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00002211 this->internalDrawPaint(paint);
2212}
2213
2214void SkCanvas::internalDrawPaint(const SkPaint& paint) {
Mike Reed38992392019-07-30 10:48:15 -04002215 DRAW_BEGIN_CHECK_COMPLETE_OVERWRITE(paint, nullptr, false)
reed@android.com8a1c16f2008-12-17 15:59:43 +00002216
2217 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002218 iter.fDevice->drawPaint(draw.paint());
reed@android.com8a1c16f2008-12-17 15:59:43 +00002219 }
2220
Mike Reed38992392019-07-30 10:48:15 -04002221 DRAW_END
reed@android.com8a1c16f2008-12-17 15:59:43 +00002222}
2223
reed41af9662015-01-05 07:49:08 -08002224void SkCanvas::onDrawPoints(PointMode mode, size_t count, const SkPoint pts[],
2225 const SkPaint& paint) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002226 if ((long)count <= 0) {
2227 return;
2228 }
2229
Mike Reed822128b2017-02-28 16:41:03 -05002230 SkRect r;
halcanary96fcdcc2015-08-27 07:41:13 -07002231 const SkRect* bounds = nullptr;
reed@google.coma584aed2012-05-16 14:06:02 +00002232 if (paint.canComputeFastBounds()) {
reed@google.coma584aed2012-05-16 14:06:02 +00002233 // special-case 2 points (common for drawing a single line)
2234 if (2 == count) {
2235 r.set(pts[0], pts[1]);
2236 } else {
Mike Reed92b33352019-08-24 19:39:13 -04002237 r.setBounds(pts, SkToInt(count));
reed@google.coma584aed2012-05-16 14:06:02 +00002238 }
Jim Van Verth5d32b832018-02-21 11:14:32 -05002239 if (!r.isFinite()) {
2240 return;
2241 }
Mike Reed822128b2017-02-28 16:41:03 -05002242 SkRect storage;
senorblanco87e066e2015-10-28 11:23:36 -07002243 if (this->quickReject(paint.computeFastStrokeBounds(r, &storage))) {
2244 return;
2245 }
2246 bounds = &r;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00002247 }
reed@google.coma584aed2012-05-16 14:06:02 +00002248
halcanary96fcdcc2015-08-27 07:41:13 -07002249 SkASSERT(pts != nullptr);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002250
Mike Reed38992392019-07-30 10:48:15 -04002251 DRAW_BEGIN(paint, bounds)
reed@google.com4b226022011-01-11 18:32:13 +00002252
reed@android.com8a1c16f2008-12-17 15:59:43 +00002253 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002254 iter.fDevice->drawPoints(mode, count, pts, draw.paint());
reed@android.com8a1c16f2008-12-17 15:59:43 +00002255 }
reed@google.com4b226022011-01-11 18:32:13 +00002256
Mike Reed38992392019-07-30 10:48:15 -04002257 DRAW_END
reed@android.com8a1c16f2008-12-17 15:59:43 +00002258}
2259
reed4a167172016-08-18 17:15:25 -07002260static bool needs_autodrawlooper(SkCanvas* canvas, const SkPaint& paint) {
Mike Reed9dc0b9e2019-07-29 17:52:48 -04002261 return paint.getImageFilter() != nullptr;
reed4a167172016-08-18 17:15:25 -07002262}
2263
reed41af9662015-01-05 07:49:08 -08002264void SkCanvas::onDrawRect(const SkRect& r, const SkPaint& paint) {
Brian Osman6e3ce402017-05-17 15:10:18 -04002265 SkASSERT(r.isSorted());
reed@android.com8a1c16f2008-12-17 15:59:43 +00002266 if (paint.canComputeFastBounds()) {
Mike Reed822128b2017-02-28 16:41:03 -05002267 SkRect storage;
Brian Osman6e3ce402017-05-17 15:10:18 -04002268 if (this->quickReject(paint.computeFastBounds(r, &storage))) {
senorblanco87e066e2015-10-28 11:23:36 -07002269 return;
2270 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002271 }
reed@google.com4b226022011-01-11 18:32:13 +00002272
reed4a167172016-08-18 17:15:25 -07002273 if (needs_autodrawlooper(this, paint)) {
Mike Reed38992392019-07-30 10:48:15 -04002274 DRAW_BEGIN_CHECK_COMPLETE_OVERWRITE(paint, &r, false)
reed@android.com8a1c16f2008-12-17 15:59:43 +00002275
reed4a167172016-08-18 17:15:25 -07002276 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002277 iter.fDevice->drawRect(r, draw.paint());
reed4a167172016-08-18 17:15:25 -07002278 }
2279
Mike Reed38992392019-07-30 10:48:15 -04002280 DRAW_END
Mike Reed49f8da02018-08-27 10:48:52 -04002281 } else if (!paint.nothingToDraw()) {
Mike Reed822128b2017-02-28 16:41:03 -05002282 this->predrawNotify(&r, &paint, false);
reed4a167172016-08-18 17:15:25 -07002283 SkDrawIter iter(this);
2284 while (iter.next()) {
Mike Reeda1361362017-03-07 09:37:29 -05002285 iter.fDevice->drawRect(r, paint);
reed4a167172016-08-18 17:15:25 -07002286 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002287 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002288}
2289
msarett44df6512016-08-25 13:54:30 -07002290void SkCanvas::onDrawRegion(const SkRegion& region, const SkPaint& paint) {
msarett44df6512016-08-25 13:54:30 -07002291 SkRect regionRect = SkRect::Make(region.getBounds());
msarett44df6512016-08-25 13:54:30 -07002292 if (paint.canComputeFastBounds()) {
Mike Reed822128b2017-02-28 16:41:03 -05002293 SkRect storage;
msarett44df6512016-08-25 13:54:30 -07002294 if (this->quickReject(paint.computeFastBounds(regionRect, &storage))) {
2295 return;
2296 }
msarett44df6512016-08-25 13:54:30 -07002297 }
2298
Mike Reed38992392019-07-30 10:48:15 -04002299 DRAW_BEGIN(paint, &regionRect)
msarett44df6512016-08-25 13:54:30 -07002300
2301 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002302 iter.fDevice->drawRegion(region, draw.paint());
msarett44df6512016-08-25 13:54:30 -07002303 }
2304
Mike Reed38992392019-07-30 10:48:15 -04002305 DRAW_END
msarett44df6512016-08-25 13:54:30 -07002306}
2307
Mike Reedd5674082019-04-19 15:00:47 -04002308void SkCanvas::onDrawBehind(const SkPaint& paint) {
2309 SkIRect bounds;
2310 SkDeque::Iter iter(fMCStack, SkDeque::Iter::kBack_IterStart);
2311 for (;;) {
2312 const MCRec* rec = (const MCRec*)iter.prev();
2313 if (!rec) {
2314 return; // no backimages, so nothing to draw
2315 }
2316 if (rec->fBackImage) {
2317 bounds = SkIRect::MakeXYWH(rec->fBackImage->fLoc.fX, rec->fBackImage->fLoc.fY,
2318 rec->fBackImage->fImage->width(),
2319 rec->fBackImage->fImage->height());
2320 break;
2321 }
2322 }
2323
Mike Reed38992392019-07-30 10:48:15 -04002324 DRAW_BEGIN(paint, nullptr)
Mike Reedd5674082019-04-19 15:00:47 -04002325
2326 while (iter.next()) {
2327 SkBaseDevice* dev = iter.fDevice;
2328
Mike Reedd5674082019-04-19 15:00:47 -04002329 dev->save();
2330 // We use clipRegion because it is already defined to operate in dev-space
2331 // (i.e. ignores the ctm). However, it is going to first translate by -origin,
2332 // but we don't want that, so we undo that before calling in.
Michael Ludwigfb3f3022020-02-20 13:23:58 -05002333 SkRegion rgn(bounds.makeOffset(dev->getOrigin()));
Mike Reedd5674082019-04-19 15:00:47 -04002334 dev->clipRegion(rgn, SkClipOp::kIntersect);
Mike Reed38992392019-07-30 10:48:15 -04002335 dev->drawPaint(draw.paint());
Mike Reed9adc82c2019-04-23 10:28:13 -04002336 dev->restore(fMCRec->fMatrix);
Mike Reedd5674082019-04-19 15:00:47 -04002337 }
2338
Mike Reed38992392019-07-30 10:48:15 -04002339 DRAW_END
Mike Reedd5674082019-04-19 15:00:47 -04002340}
2341
reed41af9662015-01-05 07:49:08 -08002342void SkCanvas::onDrawOval(const SkRect& oval, const SkPaint& paint) {
Brian Osman6e3ce402017-05-17 15:10:18 -04002343 SkASSERT(oval.isSorted());
reed@google.com4ed0fb72012-12-12 20:48:18 +00002344 if (paint.canComputeFastBounds()) {
Mike Reed822128b2017-02-28 16:41:03 -05002345 SkRect storage;
Brian Osman6e3ce402017-05-17 15:10:18 -04002346 if (this->quickReject(paint.computeFastBounds(oval, &storage))) {
senorblanco87e066e2015-10-28 11:23:36 -07002347 return;
2348 }
reed@google.com4ed0fb72012-12-12 20:48:18 +00002349 }
skia.committer@gmail.com306ab9d2012-12-13 02:01:33 +00002350
Mike Reed38992392019-07-30 10:48:15 -04002351 DRAW_BEGIN(paint, &oval)
jvanverth@google.com46d3d392013-01-22 13:34:01 +00002352
2353 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002354 iter.fDevice->drawOval(oval, draw.paint());
jvanverth@google.com46d3d392013-01-22 13:34:01 +00002355 }
2356
Mike Reed38992392019-07-30 10:48:15 -04002357 DRAW_END
reed@google.com4ed0fb72012-12-12 20:48:18 +00002358}
2359
bsalomonac3aa242016-08-19 11:25:19 -07002360void SkCanvas::onDrawArc(const SkRect& oval, SkScalar startAngle,
2361 SkScalar sweepAngle, bool useCenter,
2362 const SkPaint& paint) {
Brian Osman6e3ce402017-05-17 15:10:18 -04002363 SkASSERT(oval.isSorted());
bsalomonac3aa242016-08-19 11:25:19 -07002364 if (paint.canComputeFastBounds()) {
2365 SkRect storage;
2366 // Note we're using the entire oval as the bounds.
Brian Osman6e3ce402017-05-17 15:10:18 -04002367 if (this->quickReject(paint.computeFastBounds(oval, &storage))) {
bsalomonac3aa242016-08-19 11:25:19 -07002368 return;
2369 }
bsalomonac3aa242016-08-19 11:25:19 -07002370 }
2371
Mike Reed38992392019-07-30 10:48:15 -04002372 DRAW_BEGIN(paint, &oval)
bsalomonac3aa242016-08-19 11:25:19 -07002373
2374 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002375 iter.fDevice->drawArc(oval, startAngle, sweepAngle, useCenter, draw.paint());
bsalomonac3aa242016-08-19 11:25:19 -07002376 }
2377
Mike Reed38992392019-07-30 10:48:15 -04002378 DRAW_END
bsalomonac3aa242016-08-19 11:25:19 -07002379}
2380
reed41af9662015-01-05 07:49:08 -08002381void SkCanvas::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) {
reed@google.com4ed0fb72012-12-12 20:48:18 +00002382 if (paint.canComputeFastBounds()) {
Mike Reed822128b2017-02-28 16:41:03 -05002383 SkRect storage;
senorblanco87e066e2015-10-28 11:23:36 -07002384 if (this->quickReject(paint.computeFastBounds(rrect.getBounds(), &storage))) {
2385 return;
2386 }
reed@google.com4ed0fb72012-12-12 20:48:18 +00002387 }
2388
2389 if (rrect.isRect()) {
2390 // call the non-virtual version
2391 this->SkCanvas::drawRect(rrect.getBounds(), paint);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00002392 return;
2393 } else if (rrect.isOval()) {
reed@google.com4ed0fb72012-12-12 20:48:18 +00002394 // call the non-virtual version
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00002395 this->SkCanvas::drawOval(rrect.getBounds(), paint);
2396 return;
reed@google.com4ed0fb72012-12-12 20:48:18 +00002397 }
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00002398
Mike Reed38992392019-07-30 10:48:15 -04002399 DRAW_BEGIN(paint, &rrect.getBounds())
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00002400
2401 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002402 iter.fDevice->drawRRect(rrect, draw.paint());
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00002403 }
2404
Mike Reed38992392019-07-30 10:48:15 -04002405 DRAW_END
reed@google.com4ed0fb72012-12-12 20:48:18 +00002406}
2407
Mike Reed822128b2017-02-28 16:41:03 -05002408void SkCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint) {
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00002409 if (paint.canComputeFastBounds()) {
Mike Reed822128b2017-02-28 16:41:03 -05002410 SkRect storage;
senorblanco87e066e2015-10-28 11:23:36 -07002411 if (this->quickReject(paint.computeFastBounds(outer.getBounds(), &storage))) {
2412 return;
2413 }
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00002414 }
skia.committer@gmail.com25c71272014-02-21 03:02:02 +00002415
Mike Reed38992392019-07-30 10:48:15 -04002416 DRAW_BEGIN(paint, &outer.getBounds())
skia.committer@gmail.com25c71272014-02-21 03:02:02 +00002417
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00002418 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002419 iter.fDevice->drawDRRect(outer, inner, draw.paint());
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00002420 }
skia.committer@gmail.com25c71272014-02-21 03:02:02 +00002421
Mike Reed38992392019-07-30 10:48:15 -04002422 DRAW_END
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +00002423}
reed@google.com4ed0fb72012-12-12 20:48:18 +00002424
reed41af9662015-01-05 07:49:08 -08002425void SkCanvas::onDrawPath(const SkPath& path, const SkPaint& paint) {
reed@google.com93645112012-07-26 16:11:47 +00002426 if (!path.isFinite()) {
2427 return;
2428 }
2429
Mike Reed822128b2017-02-28 16:41:03 -05002430 const SkRect& pathBounds = path.getBounds();
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00002431 if (!path.isInverseFillType() && paint.canComputeFastBounds()) {
Mike Reed822128b2017-02-28 16:41:03 -05002432 SkRect storage;
senorblanco87e066e2015-10-28 11:23:36 -07002433 if (this->quickReject(paint.computeFastBounds(pathBounds, &storage))) {
2434 return;
2435 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002436 }
commit-bot@chromium.org0b45dc42014-02-21 05:42:57 +00002437
Mike Reed822128b2017-02-28 16:41:03 -05002438 if (pathBounds.width() <= 0 && pathBounds.height() <= 0) {
commit-bot@chromium.org6803c212014-05-04 18:08:27 +00002439 if (path.isInverseFillType()) {
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00002440 this->internalDrawPaint(paint);
caryclark6651a322015-09-09 13:20:49 -07002441 return;
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00002442 }
bsalomon@google.comfa6ac932011-10-05 19:57:55 +00002443 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002444
Mike Reed38992392019-07-30 10:48:15 -04002445 DRAW_BEGIN(paint, &pathBounds)
reed@android.com8a1c16f2008-12-17 15:59:43 +00002446
2447 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002448 iter.fDevice->drawPath(path, draw.paint());
reed@android.com8a1c16f2008-12-17 15:59:43 +00002449 }
2450
Mike Reed38992392019-07-30 10:48:15 -04002451 DRAW_END
reed@android.com8a1c16f2008-12-17 15:59:43 +00002452}
2453
reed262a71b2015-12-05 13:07:27 -08002454bool SkCanvas::canDrawBitmapAsSprite(SkScalar x, SkScalar y, int w, int h, const SkPaint& paint) {
reed262a71b2015-12-05 13:07:27 -08002455 if (!paint.getImageFilter()) {
2456 return false;
2457 }
2458
2459 const SkMatrix& ctm = this->getTotalMatrix();
fmalitac7e211a2016-01-07 10:34:46 -08002460 if (!SkTreatAsSprite(ctm, SkISize::Make(w, h), paint)) {
reed262a71b2015-12-05 13:07:27 -08002461 return false;
2462 }
2463
Michael Ludwig1e58c1a2020-03-02 16:27:03 -05002464 // The other paint effects need to be applied before the image filter, but the sprite draw
2465 // applies the filter explicitly first.
2466 if (paint.getAlphaf() < 1.f || paint.getColorFilter() || paint.getMaskFilter()) {
2467 return false;
2468 }
reed262a71b2015-12-05 13:07:27 -08002469 // Currently we can only use the filterSprite code if we are clipped to the bitmap's bounds.
2470 // Once we can filter and the filter will return a result larger than itself, we should be
2471 // able to remove this constraint.
2472 // skbug.com/4526
2473 //
2474 SkPoint pt;
2475 ctm.mapXY(x, y, &pt);
2476 SkIRect ir = SkIRect::MakeXYWH(SkScalarRoundToInt(pt.x()), SkScalarRoundToInt(pt.y()), w, h);
2477 return ir.contains(fMCRec->fRasterClip.getBounds());
2478}
2479
Mike Reedf441cfc2018-04-11 14:50:16 -04002480// Given storage for a real paint, and an optional paint parameter, clean-up the param (if non-null)
2481// given the drawing semantics for drawImage/bitmap (skbug.com/7804) and return it, or the original
2482// null.
2483static const SkPaint* init_image_paint(SkPaint* real, const SkPaint* paintParam) {
2484 if (paintParam) {
2485 *real = *paintParam;
2486 real->setStyle(SkPaint::kFill_Style);
2487 real->setPathEffect(nullptr);
2488 paintParam = real;
2489 }
2490 return paintParam;
2491}
2492
reeda85d4d02015-05-06 12:56:48 -07002493void SkCanvas::onDrawImage(const SkImage* image, SkScalar x, SkScalar y, const SkPaint* paint) {
Mike Reedf441cfc2018-04-11 14:50:16 -04002494 SkPaint realPaint;
2495 paint = init_image_paint(&realPaint, paint);
2496
reeda85d4d02015-05-06 12:56:48 -07002497 SkRect bounds = SkRect::MakeXYWH(x, y,
2498 SkIntToScalar(image->width()), SkIntToScalar(image->height()));
halcanary96fcdcc2015-08-27 07:41:13 -07002499 if (nullptr == paint || paint->canComputeFastBounds()) {
senorblanco87e066e2015-10-28 11:23:36 -07002500 SkRect tmp = bounds;
2501 if (paint) {
2502 paint->computeFastBounds(tmp, &tmp);
2503 }
2504 if (this->quickReject(tmp)) {
2505 return;
2506 }
reeda85d4d02015-05-06 12:56:48 -07002507 }
Mike Reedf441cfc2018-04-11 14:50:16 -04002508 // At this point we need a real paint object. If the caller passed null, then we should
2509 // use realPaint (in its default state). If the caller did pass a paint, then we have copied
2510 // (and modified) it in realPaint. Thus either way, "realPaint" is what we want to use.
2511 paint = &realPaint;
reed262a71b2015-12-05 13:07:27 -08002512
reeda2217ef2016-07-20 06:04:34 -07002513 sk_sp<SkSpecialImage> special;
reed129ed1c2016-02-22 06:42:31 -08002514 bool drawAsSprite = this->canDrawBitmapAsSprite(x, y, image->width(), image->height(),
2515 *paint);
2516 if (drawAsSprite && paint->getImageFilter()) {
reeda2217ef2016-07-20 06:04:34 -07002517 special = this->getDevice()->makeSpecial(image);
2518 if (!special) {
reed129ed1c2016-02-22 06:42:31 -08002519 drawAsSprite = false;
reed129ed1c2016-02-22 06:42:31 -08002520 }
2521 }
2522
Mike Reed38992392019-07-30 10:48:15 -04002523 DRAW_BEGIN_DRAWBITMAP(*paint, drawAsSprite, &bounds)
reed262a71b2015-12-05 13:07:27 -08002524
reeda85d4d02015-05-06 12:56:48 -07002525 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002526 const SkPaint& pnt = draw.paint();
reeda2217ef2016-07-20 06:04:34 -07002527 if (special) {
2528 SkPoint pt;
Michael Ludwigc89d1b52019-10-18 11:32:56 -04002529 iter.fDevice->localToDevice().mapXY(x, y, &pt);
Mike Reeda1361362017-03-07 09:37:29 -05002530 iter.fDevice->drawSpecial(special.get(),
reeda2217ef2016-07-20 06:04:34 -07002531 SkScalarRoundToInt(pt.fX),
Florin Malita53f77bd2017-04-28 13:48:37 -04002532 SkScalarRoundToInt(pt.fY), pnt,
2533 nullptr, SkMatrix::I());
reed262a71b2015-12-05 13:07:27 -08002534 } else {
Michael Ludwigb7d64b92019-02-11 11:09:15 -05002535 iter.fDevice->drawImageRect(
2536 image, nullptr, SkRect::MakeXYWH(x, y, image->width(), image->height()), pnt,
2537 kStrict_SrcRectConstraint);
reed262a71b2015-12-05 13:07:27 -08002538 }
reeda85d4d02015-05-06 12:56:48 -07002539 }
halcanary9d524f22016-03-29 09:03:52 -07002540
Mike Reed38992392019-07-30 10:48:15 -04002541 DRAW_END
piotaixrb5fae932014-09-24 13:03:30 -07002542}
2543
reed41af9662015-01-05 07:49:08 -08002544void SkCanvas::onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -07002545 const SkPaint* paint, SrcRectConstraint constraint) {
Mike Reedf441cfc2018-04-11 14:50:16 -04002546 SkPaint realPaint;
2547 paint = init_image_paint(&realPaint, paint);
2548
halcanary96fcdcc2015-08-27 07:41:13 -07002549 if (nullptr == paint || paint->canComputeFastBounds()) {
senorblancoc41e7e12015-12-07 12:51:30 -08002550 SkRect storage = dst;
senorblanco87e066e2015-10-28 11:23:36 -07002551 if (paint) {
2552 paint->computeFastBounds(dst, &storage);
2553 }
2554 if (this->quickReject(storage)) {
2555 return;
2556 }
reeda85d4d02015-05-06 12:56:48 -07002557 }
Mike Reedf441cfc2018-04-11 14:50:16 -04002558 paint = &realPaint;
halcanary9d524f22016-03-29 09:03:52 -07002559
Mike Reed38992392019-07-30 10:48:15 -04002560 DRAW_BEGIN_CHECK_COMPLETE_OVERWRITE(*paint, &dst, image->isOpaque())
halcanary9d524f22016-03-29 09:03:52 -07002561
reeda85d4d02015-05-06 12:56:48 -07002562 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002563 iter.fDevice->drawImageRect(image, src, dst, draw.paint(), constraint);
reeda85d4d02015-05-06 12:56:48 -07002564 }
halcanary9d524f22016-03-29 09:03:52 -07002565
Mike Reed38992392019-07-30 10:48:15 -04002566 DRAW_END
piotaixrb5fae932014-09-24 13:03:30 -07002567}
2568
reed4c21dc52015-06-25 12:32:03 -07002569void SkCanvas::onDrawImageNine(const SkImage* image, const SkIRect& center, const SkRect& dst,
2570 const SkPaint* paint) {
Mike Reedf441cfc2018-04-11 14:50:16 -04002571 SkPaint realPaint;
2572 paint = init_image_paint(&realPaint, paint);
2573
halcanary96fcdcc2015-08-27 07:41:13 -07002574 if (nullptr == paint || paint->canComputeFastBounds()) {
senorblancoc41e7e12015-12-07 12:51:30 -08002575 SkRect storage;
senorblanco87e066e2015-10-28 11:23:36 -07002576 if (this->quickReject(paint ? paint->computeFastBounds(dst, &storage) : dst)) {
2577 return;
2578 }
reed@google.com3d608122011-11-21 15:16:16 +00002579 }
Mike Reedf441cfc2018-04-11 14:50:16 -04002580 paint = &realPaint;
halcanary9d524f22016-03-29 09:03:52 -07002581
Mike Reed38992392019-07-30 10:48:15 -04002582 DRAW_BEGIN(*paint, &dst)
halcanary9d524f22016-03-29 09:03:52 -07002583
reed4c21dc52015-06-25 12:32:03 -07002584 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002585 iter.fDevice->drawImageNine(image, center, dst, draw.paint());
reed@google.com9987ec32011-09-07 11:57:52 +00002586 }
halcanary9d524f22016-03-29 09:03:52 -07002587
Mike Reed38992392019-07-30 10:48:15 -04002588 DRAW_END
reed@google.com9987ec32011-09-07 11:57:52 +00002589}
2590
msarett16882062016-08-16 09:31:08 -07002591void SkCanvas::onDrawImageLattice(const SkImage* image, const Lattice& lattice, const SkRect& dst,
2592 const SkPaint* paint) {
Mike Reedf441cfc2018-04-11 14:50:16 -04002593 SkPaint realPaint;
2594 paint = init_image_paint(&realPaint, paint);
2595
msarett16882062016-08-16 09:31:08 -07002596 if (nullptr == paint || paint->canComputeFastBounds()) {
2597 SkRect storage;
2598 if (this->quickReject(paint ? paint->computeFastBounds(dst, &storage) : dst)) {
2599 return;
2600 }
2601 }
Mike Reedf441cfc2018-04-11 14:50:16 -04002602 paint = &realPaint;
msarett16882062016-08-16 09:31:08 -07002603
Mike Reed38992392019-07-30 10:48:15 -04002604 DRAW_BEGIN(*paint, &dst)
msarett16882062016-08-16 09:31:08 -07002605
2606 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002607 iter.fDevice->drawImageLattice(image, lattice, dst, draw.paint());
msarett16882062016-08-16 09:31:08 -07002608 }
2609
Mike Reed38992392019-07-30 10:48:15 -04002610 DRAW_END
msarett16882062016-08-16 09:31:08 -07002611}
2612
fmalita00d5c2c2014-08-21 08:53:26 -07002613void SkCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
2614 const SkPaint& paint) {
fmalita85d5eb92015-03-04 11:20:12 -08002615 SkRect storage;
halcanary96fcdcc2015-08-27 07:41:13 -07002616 const SkRect* bounds = nullptr;
fmalita19653d12014-10-16 11:53:30 -07002617 if (paint.canComputeFastBounds()) {
fmalita85d5eb92015-03-04 11:20:12 -08002618 storage = blob->bounds().makeOffset(x, y);
senorblanco87e066e2015-10-28 11:23:36 -07002619 SkRect tmp;
2620 if (this->quickReject(paint.computeFastBounds(storage, &tmp))) {
2621 return;
2622 }
2623 bounds = &storage;
fmalita7ba7aa72014-08-29 09:46:36 -07002624 }
2625
fmalita024f9962015-03-03 19:08:17 -08002626 // We cannot filter in the looper as we normally do, because the paint is
2627 // incomplete at this point (text-related attributes are embedded within blob run paints).
Mike Reed38992392019-07-30 10:48:15 -04002628 DRAW_BEGIN(paint, bounds)
fmalita00d5c2c2014-08-21 08:53:26 -07002629
fmalitaaa1b9122014-08-28 14:32:24 -07002630 while (iter.next()) {
Mike Reed38992392019-07-30 10:48:15 -04002631 fScratchGlyphRunBuilder->drawTextBlob(draw.paint(), *blob, {x, y}, iter.fDevice);
fmalita00d5c2c2014-08-21 08:53:26 -07002632 }
2633
Mike Reed38992392019-07-30 10:48:15 -04002634 DRAW_END
fmalita00d5c2c2014-08-21 08:53:26 -07002635}
2636
Mike Reed358fcad2018-11-23 15:27:51 -05002637// These call the (virtual) onDraw... method
Mike Reed7d1eb332018-12-04 17:35:56 -05002638void SkCanvas::drawSimpleText(const void* text, size_t byteLength, SkTextEncoding encoding,
Mike Reed358fcad2018-11-23 15:27:51 -05002639 SkScalar x, SkScalar y, const SkFont& font, const SkPaint& paint) {
2640 TRACE_EVENT0("skia", TRACE_FUNC);
2641 if (byteLength) {
2642 sk_msan_assert_initialized(text, SkTAddOffset<const void>(text, byteLength));
Mike Reed704a3422018-12-06 15:44:14 -05002643 this->drawTextBlob(SkTextBlob::MakeFromText(text, byteLength, font, encoding), x, y, paint);
Mike Reed358fcad2018-11-23 15:27:51 -05002644 }
2645}
Mike Reed4f81bb72019-01-23 09:23:00 -05002646
fmalita00d5c2c2014-08-21 08:53:26 -07002647void SkCanvas::drawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
2648 const SkPaint& paint) {
Brian Osman39c08ac2017-07-26 09:36:09 -04002649 TRACE_EVENT0("skia", TRACE_FUNC);
Brian Osman5e035ca2017-07-26 10:18:57 -04002650 RETURN_ON_NULL(blob);
Mike Reed74d6e112018-01-23 13:06:12 -05002651 RETURN_ON_FALSE(blob->bounds().makeOffset(x, y).isFinite());
reede3b38ce2016-01-08 09:18:44 -08002652 this->onDrawTextBlob(blob, x, y, paint);
fmalita00d5c2c2014-08-21 08:53:26 -07002653}
reed@google.come0d9ce82014-04-23 04:00:17 +00002654
Mike Reeda2cf8ae2020-03-02 17:08:01 -05002655void SkCanvas::onDrawVerticesObject(const SkVertices* vertices, SkBlendMode bmode,
2656 const SkPaint& paint) {
2657 DRAW_BEGIN(paint, nullptr)
2658
2659 while (iter.next()) {
2660 // In the common case of one iteration we could std::move vertices here.
2661 iter.fDevice->drawVertices(vertices, bmode, draw.paint());
2662 }
2663
2664 DRAW_END
2665}
Brian Salomon199fb872017-02-06 09:41:10 -05002666
dandovb3c9d1c2014-08-12 08:34:29 -07002667void SkCanvas::drawPatch(const SkPoint cubics[12], const SkColor colors[4],
Mike Reed7d954ad2016-10-28 15:42:34 -04002668 const SkPoint texCoords[4], SkBlendMode bmode,
2669 const SkPaint& paint) {
Brian Osman39c08ac2017-07-26 09:36:09 -04002670 TRACE_EVENT0("skia", TRACE_FUNC);
halcanary96fcdcc2015-08-27 07:41:13 -07002671 if (nullptr == cubics) {
dandovb3c9d1c2014-08-12 08:34:29 -07002672 return;
2673 }
mtklein6cfa73a2014-08-13 13:33:49 -07002674
Mike Reedfaba3712016-11-03 14:45:31 -04002675 this->onDrawPatch(cubics, colors, texCoords, bmode, paint);
msarett9340c262016-09-22 05:20:21 -07002676}
2677
2678void SkCanvas::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
Mike Reedfaba3712016-11-03 14:45:31 -04002679 const SkPoint texCoords[4], SkBlendMode bmode,
Mike Reed7d954ad2016-10-28 15:42:34 -04002680 const SkPaint& paint) {
dandovecfff212014-08-04 10:02:00 -07002681 // Since a patch is always within the convex hull of the control points, we discard it when its
2682 // bounding rectangle is completely outside the current clip.
2683 SkRect bounds;
Mike Reed92b33352019-08-24 19:39:13 -04002684 bounds.setBounds(cubics, SkPatchUtils::kNumCtrlPts);
dandovecfff212014-08-04 10:02:00 -07002685 if (this->quickReject(bounds)) {
2686 return;
2687 }
mtklein6cfa73a2014-08-13 13:33:49 -07002688
Mike Reed38992392019-07-30 10:48:15 -04002689 DRAW_BEGIN(paint, nullptr)
mtklein6cfa73a2014-08-13 13:33:49 -07002690
dandovecfff212014-08-04 10:02:00 -07002691 while (iter.next()) {
Brian Osmane0a99622018-07-09 16:12:27 -04002692 iter.fDevice->drawPatch(cubics, colors, texCoords, bmode, paint);
dandovecfff212014-08-04 10:02:00 -07002693 }
mtklein6cfa73a2014-08-13 13:33:49 -07002694
Mike Reed38992392019-07-30 10:48:15 -04002695 DRAW_END
dandovecfff212014-08-04 10:02:00 -07002696}
2697
reeda8db7282015-07-07 10:22:31 -07002698void SkCanvas::drawDrawable(SkDrawable* dr, SkScalar x, SkScalar y) {
Derek Sollenbergeredf3dc02017-08-16 10:35:28 -04002699#ifndef SK_BUILD_FOR_ANDROID_FRAMEWORK
Brian Osman5e035ca2017-07-26 10:18:57 -04002700 TRACE_EVENT0("skia", TRACE_FUNC);
Derek Sollenbergeredf3dc02017-08-16 10:35:28 -04002701#endif
reede3b38ce2016-01-08 09:18:44 -08002702 RETURN_ON_NULL(dr);
2703 if (x || y) {
2704 SkMatrix matrix = SkMatrix::MakeTrans(x, y);
2705 this->onDrawDrawable(dr, &matrix);
2706 } else {
2707 this->onDrawDrawable(dr, nullptr);
reed6a070dc2014-11-11 19:36:09 -08002708 }
2709}
2710
reeda8db7282015-07-07 10:22:31 -07002711void SkCanvas::drawDrawable(SkDrawable* dr, const SkMatrix* matrix) {
Derek Sollenbergeredf3dc02017-08-16 10:35:28 -04002712#ifndef SK_BUILD_FOR_ANDROID_FRAMEWORK
Brian Osman5e035ca2017-07-26 10:18:57 -04002713 TRACE_EVENT0("skia", TRACE_FUNC);
Derek Sollenbergeredf3dc02017-08-16 10:35:28 -04002714#endif
reede3b38ce2016-01-08 09:18:44 -08002715 RETURN_ON_NULL(dr);
2716 if (matrix && matrix->isIdentity()) {
2717 matrix = nullptr;
reeda8db7282015-07-07 10:22:31 -07002718 }
reede3b38ce2016-01-08 09:18:44 -08002719 this->onDrawDrawable(dr, matrix);
reeda8db7282015-07-07 10:22:31 -07002720}
2721
2722void SkCanvas::onDrawDrawable(SkDrawable* dr, const SkMatrix* matrix) {
reed2a62e852016-10-03 10:35:37 -07002723 // drawable bounds are no longer reliable (e.g. android displaylist)
2724 // so don't use them for quick-reject
Greg Daniel9ed1a2c2018-10-18 12:43:25 -04002725 this->getDevice()->drawDrawable(dr, matrix, this);
reed6a070dc2014-11-11 19:36:09 -08002726}
2727
reed71c3c762015-06-24 10:29:17 -07002728void SkCanvas::onDrawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect tex[],
Mike Reedfaba3712016-11-03 14:45:31 -04002729 const SkColor colors[], int count, SkBlendMode bmode,
reed71c3c762015-06-24 10:29:17 -07002730 const SkRect* cull, const SkPaint* paint) {
2731 if (cull && this->quickReject(*cull)) {
2732 return;
2733 }
2734
2735 SkPaint pnt;
2736 if (paint) {
2737 pnt = *paint;
2738 }
halcanary9d524f22016-03-29 09:03:52 -07002739
Mike Reed38992392019-07-30 10:48:15 -04002740 DRAW_BEGIN(pnt, nullptr)
reed71c3c762015-06-24 10:29:17 -07002741 while (iter.next()) {
Mike Reeda1361362017-03-07 09:37:29 -05002742 iter.fDevice->drawAtlas(atlas, xform, tex, colors, count, bmode, pnt);
reed71c3c762015-06-24 10:29:17 -07002743 }
Mike Reed38992392019-07-30 10:48:15 -04002744 DRAW_END
reed71c3c762015-06-24 10:29:17 -07002745}
2746
reedf70b5312016-03-04 16:36:20 -08002747void SkCanvas::onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
2748 SkASSERT(key);
2749
2750 SkPaint paint;
Mike Reed38992392019-07-30 10:48:15 -04002751 DRAW_BEGIN(paint, nullptr)
reedf70b5312016-03-04 16:36:20 -08002752 while (iter.next()) {
Mike Reeda1361362017-03-07 09:37:29 -05002753 iter.fDevice->drawAnnotation(rect, key, value);
reedf70b5312016-03-04 16:36:20 -08002754 }
Mike Reed38992392019-07-30 10:48:15 -04002755 DRAW_END
reedf70b5312016-03-04 16:36:20 -08002756}
2757
Michael Ludwiga595f862019-08-27 15:25:49 -04002758void SkCanvas::onDrawEdgeAAQuad(const SkRect& r, const SkPoint clip[4], QuadAAFlags edgeAA,
2759 const SkColor4f& color, SkBlendMode mode) {
Michael Ludwig390f0cc2019-03-19 09:16:38 -04002760 SkASSERT(r.isSorted());
2761
2762 // If this used a paint, it would be a filled color with blend mode, which does not
2763 // need to use an autodraw loop, so use SkDrawIter directly.
2764 if (this->quickReject(r)) {
2765 return;
2766 }
2767
Michael Ludwiga4b44882019-08-28 14:34:58 -04002768 this->predrawNotify(&r, nullptr, false);
Michael Ludwig390f0cc2019-03-19 09:16:38 -04002769 SkDrawIter iter(this);
2770 while(iter.next()) {
2771 iter.fDevice->drawEdgeAAQuad(r, clip, edgeAA, color, mode);
2772 }
2773}
2774
2775void SkCanvas::onDrawEdgeAAImageSet(const ImageSetEntry imageSet[], int count,
2776 const SkPoint dstClips[], const SkMatrix preViewMatrices[],
2777 const SkPaint* paint, SrcRectConstraint constraint) {
Michael Ludwiga4b44882019-08-28 14:34:58 -04002778 if (count <= 0) {
2779 // Nothing to draw
2780 return;
2781 }
2782
Michael Ludwig390f0cc2019-03-19 09:16:38 -04002783 SkPaint realPaint;
2784 init_image_paint(&realPaint, paint);
2785
Michael Ludwiga4b44882019-08-28 14:34:58 -04002786 // We could calculate the set's dstRect union to always check quickReject(), but we can't reject
2787 // individual entries and Chromium's occlusion culling already makes it likely that at least one
2788 // entry will be visible. So, we only calculate the draw bounds when it's trivial (count == 1),
2789 // or we need it for the autolooper (since it greatly improves image filter perf).
2790 bool needsAutoLooper = needs_autodrawlooper(this, realPaint);
2791 bool setBoundsValid = count == 1 || needsAutoLooper;
2792 SkRect setBounds = imageSet[0].fDstRect;
2793 if (imageSet[0].fMatrixIndex >= 0) {
2794 // Account for the per-entry transform that is applied prior to the CTM when drawing
2795 preViewMatrices[imageSet[0].fMatrixIndex].mapRect(&setBounds);
Michael Ludwig977b50a2019-08-27 13:23:20 -04002796 }
Michael Ludwiga4b44882019-08-28 14:34:58 -04002797 if (needsAutoLooper) {
2798 for (int i = 1; i < count; ++i) {
2799 SkRect entryBounds = imageSet[i].fDstRect;
2800 if (imageSet[i].fMatrixIndex >= 0) {
2801 preViewMatrices[imageSet[i].fMatrixIndex].mapRect(&entryBounds);
2802 }
2803 setBounds.joinPossiblyEmptyRect(entryBounds);
2804 }
2805 }
2806
2807 // If we happen to have the draw bounds, though, might as well check quickReject().
2808 if (setBoundsValid && realPaint.canComputeFastBounds()) {
2809 SkRect tmp;
2810 if (this->quickReject(realPaint.computeFastBounds(setBounds, &tmp))) {
2811 return;
2812 }
2813 }
2814
2815 if (needsAutoLooper) {
2816 SkASSERT(setBoundsValid);
2817 DRAW_BEGIN(realPaint, &setBounds)
2818 while (iter.next()) {
2819 iter.fDevice->drawEdgeAAImageSet(
2820 imageSet, count, dstClips, preViewMatrices, draw.paint(), constraint);
2821 }
2822 DRAW_END
2823 } else {
2824 this->predrawNotify();
2825 SkDrawIter iter(this);
2826 while(iter.next()) {
2827 iter.fDevice->drawEdgeAAImageSet(
2828 imageSet, count, dstClips, preViewMatrices, realPaint, constraint);
2829 }
2830 }
Michael Ludwig390f0cc2019-03-19 09:16:38 -04002831}
2832
reed@android.com8a1c16f2008-12-17 15:59:43 +00002833//////////////////////////////////////////////////////////////////////////////
2834// These methods are NOT virtual, and therefore must call back into virtual
2835// methods, rather than actually drawing themselves.
2836//////////////////////////////////////////////////////////////////////////////
2837
reed374772b2016-10-05 17:33:02 -07002838void SkCanvas::drawColor(SkColor c, SkBlendMode mode) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002839 SkPaint paint;
reed@android.com8a1c16f2008-12-17 15:59:43 +00002840 paint.setColor(c);
reed374772b2016-10-05 17:33:02 -07002841 paint.setBlendMode(mode);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002842 this->drawPaint(paint);
2843}
2844
2845void SkCanvas::drawPoint(SkScalar x, SkScalar y, const SkPaint& paint) {
Mike Reed3661bc92017-02-22 13:21:42 -05002846 const SkPoint pt = { x, y };
reed@android.com8a1c16f2008-12-17 15:59:43 +00002847 this->drawPoints(kPoints_PointMode, 1, &pt, paint);
2848}
2849
Mike Reed3661bc92017-02-22 13:21:42 -05002850void SkCanvas::drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, const SkPaint& paint) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002851 SkPoint pts[2];
reed@android.com8a1c16f2008-12-17 15:59:43 +00002852 pts[0].set(x0, y0);
2853 pts[1].set(x1, y1);
2854 this->drawPoints(kLines_PointMode, 2, pts, paint);
2855}
2856
Mike Reed3661bc92017-02-22 13:21:42 -05002857void SkCanvas::drawCircle(SkScalar cx, SkScalar cy, SkScalar radius, const SkPaint& paint) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002858 if (radius < 0) {
2859 radius = 0;
2860 }
2861
2862 SkRect r;
Mike Reed92b33352019-08-24 19:39:13 -04002863 r.setLTRB(cx - radius, cy - radius, cx + radius, cy + radius);
reed@google.com4ed0fb72012-12-12 20:48:18 +00002864 this->drawOval(r, paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002865}
2866
2867void SkCanvas::drawRoundRect(const SkRect& r, SkScalar rx, SkScalar ry,
2868 const SkPaint& paint) {
2869 if (rx > 0 && ry > 0) {
reed@google.com4ed0fb72012-12-12 20:48:18 +00002870 SkRRect rrect;
2871 rrect.setRectXY(r, rx, ry);
2872 this->drawRRect(rrect, paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002873 } else {
2874 this->drawRect(r, paint);
2875 }
2876}
2877
reed@android.com8a1c16f2008-12-17 15:59:43 +00002878void SkCanvas::drawArc(const SkRect& oval, SkScalar startAngle,
2879 SkScalar sweepAngle, bool useCenter,
2880 const SkPaint& paint) {
Brian Osman39c08ac2017-07-26 09:36:09 -04002881 TRACE_EVENT0("skia", TRACE_FUNC);
bsalomon21af9ca2016-08-25 12:29:23 -07002882 if (oval.isEmpty() || !sweepAngle) {
2883 return;
reed@android.com8a1c16f2008-12-17 15:59:43 +00002884 }
bsalomon21af9ca2016-08-25 12:29:23 -07002885 this->onDrawArc(oval, startAngle, sweepAngle, useCenter, paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002886}
2887
reed@android.comf76bacf2009-05-13 14:00:33 +00002888///////////////////////////////////////////////////////////////////////////////
Kevin Lubick32dfdbe2018-10-18 09:47:01 -04002889#ifdef SK_DISABLE_SKPICTURE
2890void SkCanvas::drawPicture(const SkPicture* picture, const SkMatrix* matrix, const SkPaint* paint) {}
reed1c2c4412015-04-30 13:09:24 -07002891
Kevin Lubick32dfdbe2018-10-18 09:47:01 -04002892
2893void SkCanvas::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix,
2894 const SkPaint* paint) {}
2895#else
Mike Klein88d90712018-01-27 17:30:04 +00002896/**
2897 * This constant is trying to balance the speed of ref'ing a subpicture into a parent picture,
2898 * against the playback cost of recursing into the subpicture to get at its actual ops.
2899 *
2900 * For now we pick a conservatively small value, though measurement (and other heuristics like
2901 * the type of ops contained) may justify changing this value.
2902 */
2903#define kMaxPictureOpsToUnrollInsteadOfRef 1
2904
reedd5fa1a42014-08-09 11:08:05 -07002905void SkCanvas::drawPicture(const SkPicture* picture, const SkMatrix* matrix, const SkPaint* paint) {
Brian Osman5e035ca2017-07-26 10:18:57 -04002906 TRACE_EVENT0("skia", TRACE_FUNC);
reede3b38ce2016-01-08 09:18:44 -08002907 RETURN_ON_NULL(picture);
2908
reede3b38ce2016-01-08 09:18:44 -08002909 if (matrix && matrix->isIdentity()) {
2910 matrix = nullptr;
2911 }
Mike Klein88d90712018-01-27 17:30:04 +00002912 if (picture->approximateOpCount() <= kMaxPictureOpsToUnrollInsteadOfRef) {
2913 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
2914 picture->playback(this);
2915 } else {
2916 this->onDrawPicture(picture, matrix, paint);
2917 }
reedd5fa1a42014-08-09 11:08:05 -07002918}
robertphillips9b14f262014-06-04 05:40:44 -07002919
reedd5fa1a42014-08-09 11:08:05 -07002920void SkCanvas::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix,
2921 const SkPaint* paint) {
fmalitad0281802015-08-20 12:08:18 -07002922 if (!paint || paint->canComputeFastBounds()) {
2923 SkRect bounds = picture->cullRect();
2924 if (paint) {
2925 paint->computeFastBounds(bounds, &bounds);
2926 }
2927 if (matrix) {
2928 matrix->mapRect(&bounds);
2929 }
2930 if (this->quickReject(bounds)) {
2931 return;
2932 }
2933 }
2934
robertphillipsa8d7f0b2014-08-29 08:03:56 -07002935 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
robertphillipsc5ba71d2014-09-04 08:42:50 -07002936 picture->playback(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002937}
Kevin Lubick32dfdbe2018-10-18 09:47:01 -04002938#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00002939
reed@android.com8a1c16f2008-12-17 15:59:43 +00002940///////////////////////////////////////////////////////////////////////////////
2941///////////////////////////////////////////////////////////////////////////////
2942
reed3aafe112016-08-18 12:45:34 -07002943SkCanvas::LayerIter::LayerIter(SkCanvas* canvas) {
bungeman99fe8222015-08-20 07:57:51 -07002944 static_assert(sizeof(fStorage) >= sizeof(SkDrawIter), "fStorage_too_small");
reed@android.com8a1c16f2008-12-17 15:59:43 +00002945
2946 SkASSERT(canvas);
2947
reed3aafe112016-08-18 12:45:34 -07002948 fImpl = new (fStorage) SkDrawIter(canvas);
Michael Ludwig2a8a3ff2020-03-26 15:33:20 -04002949 // This advances the base iterator to the first device and caches its origin,
2950 // correctly handling the case where there are no devices.
2951 this->next();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002952}
2953
2954SkCanvas::LayerIter::~LayerIter() {
2955 fImpl->~SkDrawIter();
2956}
2957
2958void SkCanvas::LayerIter::next() {
2959 fDone = !fImpl->next();
Michael Ludwigfb3f3022020-02-20 13:23:58 -05002960 if (!fDone) {
2961 // Cache the device origin. LayerIter is only used in Android, which doesn't use image
2962 // filters, so its devices will always be able to report the origin exactly.
2963 fDeviceOrigin = fImpl->fDevice->getOrigin();
2964 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002965}
2966
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00002967SkBaseDevice* SkCanvas::LayerIter::device() const {
Mike Reed99330ba2017-02-22 11:01:08 -05002968 return fImpl->fDevice;
reed@android.com8a1c16f2008-12-17 15:59:43 +00002969}
2970
2971const SkMatrix& SkCanvas::LayerIter::matrix() const {
Michael Ludwigc89d1b52019-10-18 11:32:56 -04002972 return fImpl->fDevice->localToDevice();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002973}
2974
2975const SkPaint& SkCanvas::LayerIter::paint() const {
2976 const SkPaint* paint = fImpl->getPaint();
halcanary96fcdcc2015-08-27 07:41:13 -07002977 if (nullptr == paint) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002978 paint = &fDefaultPaint;
2979 }
2980 return *paint;
2981}
2982
Mike Reedca37f322018-03-08 13:22:16 -05002983SkIRect SkCanvas::LayerIter::clipBounds() const {
2984 return fImpl->fDevice->getGlobalBounds();
Mike Reeda1361362017-03-07 09:37:29 -05002985}
2986
Michael Ludwigfb3f3022020-02-20 13:23:58 -05002987int SkCanvas::LayerIter::x() const { return fDeviceOrigin.fX; }
2988int SkCanvas::LayerIter::y() const { return fDeviceOrigin.fY; }
justinlin@google.com20a550c2012-07-27 17:37:12 +00002989
2990///////////////////////////////////////////////////////////////////////////////
2991
Brian Osmane8a98632019-04-10 10:26:10 -04002992SkCanvas::ImageSetEntry::ImageSetEntry() = default;
2993SkCanvas::ImageSetEntry::~ImageSetEntry() = default;
2994SkCanvas::ImageSetEntry::ImageSetEntry(const ImageSetEntry&) = default;
2995SkCanvas::ImageSetEntry& SkCanvas::ImageSetEntry::operator=(const ImageSetEntry&) = default;
2996
Michael Ludwig390f0cc2019-03-19 09:16:38 -04002997SkCanvas::ImageSetEntry::ImageSetEntry(sk_sp<const SkImage> image, const SkRect& srcRect,
2998 const SkRect& dstRect, int matrixIndex, float alpha,
2999 unsigned aaFlags, bool hasClip)
3000 : fImage(std::move(image))
3001 , fSrcRect(srcRect)
3002 , fDstRect(dstRect)
3003 , fMatrixIndex(matrixIndex)
3004 , fAlpha(alpha)
3005 , fAAFlags(aaFlags)
3006 , fHasClip(hasClip) {}
3007
3008SkCanvas::ImageSetEntry::ImageSetEntry(sk_sp<const SkImage> image, const SkRect& srcRect,
3009 const SkRect& dstRect, float alpha, unsigned aaFlags)
3010 : fImage(std::move(image))
3011 , fSrcRect(srcRect)
3012 , fDstRect(dstRect)
3013 , fAlpha(alpha)
3014 , fAAFlags(aaFlags) {}
3015
3016///////////////////////////////////////////////////////////////////////////////
3017
Mike Reed5df49342016-11-12 08:06:55 -06003018std::unique_ptr<SkCanvas> SkCanvas::MakeRasterDirect(const SkImageInfo& info, void* pixels,
Mike Reed12f77342017-11-08 11:19:52 -05003019 size_t rowBytes, const SkSurfaceProps* props) {
Brian Osman431ac562018-10-10 13:20:38 -04003020 if (!SkSurfaceValidateRasterInfo(info, rowBytes)) {
halcanary96fcdcc2015-08-27 07:41:13 -07003021 return nullptr;
commit-bot@chromium.org42b08932014-03-17 02:13:07 +00003022 }
skia.committer@gmail.comeb849e52014-03-17 03:02:17 +00003023
commit-bot@chromium.org42b08932014-03-17 02:13:07 +00003024 SkBitmap bitmap;
3025 if (!bitmap.installPixels(info, pixels, rowBytes)) {
halcanary96fcdcc2015-08-27 07:41:13 -07003026 return nullptr;
commit-bot@chromium.org42b08932014-03-17 02:13:07 +00003027 }
Mike Reed12f77342017-11-08 11:19:52 -05003028
3029 return props ?
Mike Kleinf46d5ca2019-12-11 10:45:01 -05003030 std::make_unique<SkCanvas>(bitmap, *props) :
3031 std::make_unique<SkCanvas>(bitmap);
commit-bot@chromium.org42b08932014-03-17 02:13:07 +00003032}
reedd5fa1a42014-08-09 11:08:05 -07003033
3034///////////////////////////////////////////////////////////////////////////////
3035
Florin Malitaee424ac2016-12-01 12:47:59 -05003036SkNoDrawCanvas::SkNoDrawCanvas(int width, int height)
Hal Canary363a3f82018-10-04 11:04:48 -04003037 : INHERITED(SkIRect::MakeWH(width, height)) {}
Florin Malitaee424ac2016-12-01 12:47:59 -05003038
Florin Malita439ace92016-12-02 12:05:41 -05003039SkNoDrawCanvas::SkNoDrawCanvas(const SkIRect& bounds)
Hal Canary363a3f82018-10-04 11:04:48 -04003040 : INHERITED(bounds) {}
Florin Malita439ace92016-12-02 12:05:41 -05003041
Herb Derbyefe39bc2018-05-01 17:06:20 -04003042SkNoDrawCanvas::SkNoDrawCanvas(sk_sp<SkBaseDevice> device)
Herb Derby76d69b42018-03-15 17:34:40 -04003043 : INHERITED(device) {}
3044
Florin Malitaee424ac2016-12-01 12:47:59 -05003045SkCanvas::SaveLayerStrategy SkNoDrawCanvas::getSaveLayerStrategy(const SaveLayerRec& rec) {
3046 (void)this->INHERITED::getSaveLayerStrategy(rec);
3047 return kNoLayer_SaveLayerStrategy;
3048}
3049
Mike Reed148b7fd2018-12-18 17:38:18 -05003050bool SkNoDrawCanvas::onDoSaveBehind(const SkRect*) {
3051 return false;
3052}
3053
Florin Malitaee424ac2016-12-01 12:47:59 -05003054///////////////////////////////////////////////////////////////////////////////
reed73603f32016-09-20 08:42:38 -07003055
reed73603f32016-09-20 08:42:38 -07003056static_assert((int)SkRegion::kDifference_Op == (int)kDifference_SkClipOp, "");
3057static_assert((int)SkRegion::kIntersect_Op == (int)kIntersect_SkClipOp, "");
3058static_assert((int)SkRegion::kUnion_Op == (int)kUnion_SkClipOp, "");
3059static_assert((int)SkRegion::kXOR_Op == (int)kXOR_SkClipOp, "");
3060static_assert((int)SkRegion::kReverseDifference_Op == (int)kReverseDifference_SkClipOp, "");
3061static_assert((int)SkRegion::kReplace_Op == (int)kReplace_SkClipOp, "");
Mike Reed356f7c22017-01-10 11:58:39 -05003062
3063///////////////////////////////////////////////////////////////////////////////////////////////////
3064
3065SkRasterHandleAllocator::Handle SkCanvas::accessTopRasterHandle() const {
3066 if (fAllocator && fMCRec->fTopLayer->fDevice) {
Florin Malita713b8ef2017-04-28 10:57:24 -04003067 const auto& dev = fMCRec->fTopLayer->fDevice;
Mike Reed356f7c22017-01-10 11:58:39 -05003068 SkRasterHandleAllocator::Handle handle = dev->getRasterHandle();
Michael Ludwigfb3f3022020-02-20 13:23:58 -05003069 SkIRect clip = dev->devClipBounds();
Mike Reed92b33352019-08-24 19:39:13 -04003070 if (!clip.intersect({0, 0, dev->width(), dev->height()})) {
Mike Reed356f7c22017-01-10 11:58:39 -05003071 clip.setEmpty();
3072 }
3073
Michael Ludwigfb3f3022020-02-20 13:23:58 -05003074 fAllocator->updateHandle(handle, dev->localToDevice(), clip);
Mike Reed356f7c22017-01-10 11:58:39 -05003075 return handle;
3076 }
3077 return nullptr;
3078}
3079
3080static bool install(SkBitmap* bm, const SkImageInfo& info,
3081 const SkRasterHandleAllocator::Rec& rec) {
Mike Reed086a4272017-07-18 10:53:11 -04003082 return bm->installPixels(info, rec.fPixels, rec.fRowBytes, rec.fReleaseProc, rec.fReleaseCtx);
Mike Reed356f7c22017-01-10 11:58:39 -05003083}
3084
3085SkRasterHandleAllocator::Handle SkRasterHandleAllocator::allocBitmap(const SkImageInfo& info,
3086 SkBitmap* bm) {
3087 SkRasterHandleAllocator::Rec rec;
3088 if (!this->allocHandle(info, &rec) || !install(bm, info, rec)) {
3089 return nullptr;
3090 }
3091 return rec.fHandle;
3092}
3093
3094std::unique_ptr<SkCanvas>
3095SkRasterHandleAllocator::MakeCanvas(std::unique_ptr<SkRasterHandleAllocator> alloc,
3096 const SkImageInfo& info, const Rec* rec) {
Brian Osman431ac562018-10-10 13:20:38 -04003097 if (!alloc || !SkSurfaceValidateRasterInfo(info, rec ? rec->fRowBytes : kIgnoreRowBytesValue)) {
Mike Reed356f7c22017-01-10 11:58:39 -05003098 return nullptr;
3099 }
3100
3101 SkBitmap bm;
3102 Handle hndl;
3103
3104 if (rec) {
3105 hndl = install(&bm, info, *rec) ? rec->fHandle : nullptr;
3106 } else {
3107 hndl = alloc->allocBitmap(info, &bm);
3108 }
3109 return hndl ? std::unique_ptr<SkCanvas>(new SkCanvas(bm, std::move(alloc), hndl)) : nullptr;
3110}
Mike Reed7c9c9e42018-01-03 09:23:34 -05003111
3112///////////////////////////////////////////////////////////////////////////////////////////////////