blob: 5e1fe7f0aa955bff31955a5755861586df5ac79e [file] [log] [blame]
commit-bot@chromium.orgc4b21e62014-04-11 18:33:31 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
robertphillips82365912014-11-12 09:32:34 -08008#include "SkLayerInfo.h"
commit-bot@chromium.org506db0b2014-04-08 23:31:35 +00009#include "SkRecordDraw.h"
mtklein131a22b2014-08-25 14:16:15 -070010#include "SkPatchUtils.h"
commit-bot@chromium.org506db0b2014-04-08 23:31:35 +000011
mtklein5ad6ee12014-08-11 08:08:43 -070012void SkRecordDraw(const SkRecord& record,
13 SkCanvas* canvas,
reed1bdfd3f2014-11-24 14:41:51 -080014 SkPicture const* const drawablePicts[],
15 SkCanvasDrawable* const drawables[],
16 int drawableCount,
mtklein5ad6ee12014-08-11 08:08:43 -070017 const SkBBoxHierarchy* bbh,
18 SkDrawPictureCallback* callback) {
Mike Kleinc11530e2014-06-24 11:29:06 -040019 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
mtklein5ad6ee12014-08-11 08:08:43 -070020
bsalomon49f085d2014-09-05 13:34:00 -070021 if (bbh) {
mtklein5ad6ee12014-08-11 08:08:43 -070022 // Draw only ops that affect pixels in the canvas's current clip.
mtklein3e8232b2014-08-18 13:39:11 -070023 // The SkRecord and BBH were recorded in identity space. This canvas
24 // is not necessarily in that same space. getClipBounds() returns us
25 // this canvas' clip bounds transformed back into identity space, which
26 // lets us query the BBH.
mtklein7cc1a342014-11-20 08:01:09 -080027 SkRect query;
28 if (!canvas->getClipBounds(&query)) {
29 // We want to make sure our query rectangle is never totally empty.
30 // Clear ignores the clip, so it must draw even if the clip is logically empty.
31 query = SkRect::MakeWH(SK_ScalarNearlyZero, SK_ScalarNearlyZero);
32 }
mtklein3e8232b2014-08-18 13:39:11 -070033
mtklein6bd41962014-10-02 07:41:56 -070034 SkTDArray<unsigned> ops;
mtkleina723b572014-08-15 11:49:49 -070035 bbh->search(query, &ops);
mtklein5ad6ee12014-08-11 08:08:43 -070036
reed1bdfd3f2014-11-24 14:41:51 -080037 SkRecords::Draw draw(canvas, drawablePicts, drawables, drawableCount);
mtklein5ad6ee12014-08-11 08:08:43 -070038 for (int i = 0; i < ops.count(); i++) {
bsalomon49f085d2014-09-05 13:34:00 -070039 if (callback && callback->abortDrawing()) {
mtklein5ad6ee12014-08-11 08:08:43 -070040 return;
41 }
danakjd239d422014-11-03 12:43:30 -080042 // This visit call uses the SkRecords::Draw::operator() to call
43 // methods on the |canvas|, wrapped by methods defined with the
44 // DRAW() macro.
mtklein6bd41962014-10-02 07:41:56 -070045 record.visit<void>(ops[i], draw);
mtklein5ad6ee12014-08-11 08:08:43 -070046 }
47 } else {
48 // Draw all ops.
reed1bdfd3f2014-11-24 14:41:51 -080049 SkRecords::Draw draw(canvas, drawablePicts, drawables, drawableCount);
mtklein00f30bd2014-09-02 12:03:31 -070050 for (unsigned i = 0; i < record.count(); i++) {
bsalomon49f085d2014-09-05 13:34:00 -070051 if (callback && callback->abortDrawing()) {
mtklein5ad6ee12014-08-11 08:08:43 -070052 return;
53 }
danakjd239d422014-11-03 12:43:30 -080054 // This visit call uses the SkRecords::Draw::operator() to call
55 // methods on the |canvas|, wrapped by methods defined with the
56 // DRAW() macro.
mtklein00f30bd2014-09-02 12:03:31 -070057 record.visit<void>(i, draw);
mtklein5ad6ee12014-08-11 08:08:43 -070058 }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000059 }
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000060}
commit-bot@chromium.orgd9ce2be2014-04-09 23:30:28 +000061
reed6be2aa92014-11-18 11:08:05 -080062void SkRecordPartialDraw(const SkRecord& record, SkCanvas* canvas,
63 SkPicture const* const drawablePicts[], int drawableCount,
mtklein00f30bd2014-09-02 12:03:31 -070064 const SkRect& clearRect,
robertphillips4815fe52014-09-16 10:32:43 -070065 unsigned start, unsigned stop,
66 const SkMatrix& initialCTM) {
mtklein00f30bd2014-09-02 12:03:31 -070067 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
68
69 stop = SkTMin(stop, record.count());
reed6be2aa92014-11-18 11:08:05 -080070 SkRecords::PartialDraw draw(canvas, NULL, 0, clearRect, initialCTM);
mtklein00f30bd2014-09-02 12:03:31 -070071 for (unsigned i = start; i < stop; i++) {
72 record.visit<void>(i, draw);
73 }
74}
75
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000076namespace SkRecords {
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000077
mtklein7cdc1ee2014-07-07 10:41:04 -070078// FIXME: SkBitmaps are stateful, so we need to copy them to play back in multiple threads.
79static SkBitmap shallow_copy(const SkBitmap& bitmap) {
80 return bitmap;
81}
82
commit-bot@chromium.org2e0c32a2014-04-28 16:19:45 +000083// NoOps draw nothing.
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000084template <> void Draw::draw(const NoOp&) {}
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000085
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000086#define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000087DRAW(Restore, restore());
Florin Malita5f6102d2014-06-30 10:13:28 -040088DRAW(Save, save());
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000089DRAW(SaveLayer, saveLayer(r.bounds, r.paint, r.flags));
90DRAW(PopCull, popCull());
commit-bot@chromium.org88c3e272014-04-22 16:57:20 +000091DRAW(PushCull, pushCull(r.rect));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000092DRAW(Clear, clear(r.color));
commit-bot@chromium.org99bd7d82014-05-19 15:51:12 +000093DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000094
mtkleincdeeb092014-11-20 09:14:28 -080095DRAW(ClipPath, clipPath(r.path, r.opAA.op, r.opAA.aa));
96DRAW(ClipRRect, clipRRect(r.rrect, r.opAA.op, r.opAA.aa));
97DRAW(ClipRect, clipRect(r.rect, r.opAA.op, r.opAA.aa));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000098DRAW(ClipRegion, clipRegion(r.region, r.op));
99
mtklein5f0e8222014-08-22 11:44:26 -0700100DRAW(BeginCommentGroup, beginCommentGroup(r.description));
101DRAW(AddComment, addComment(r.key, r.value));
102DRAW(EndCommentGroup, endCommentGroup());
103
mtklein7cdc1ee2014-07-07 10:41:04 -0700104DRAW(DrawBitmap, drawBitmap(shallow_copy(r.bitmap), r.left, r.top, r.paint));
105DRAW(DrawBitmapMatrix, drawBitmapMatrix(shallow_copy(r.bitmap), r.matrix, r.paint));
106DRAW(DrawBitmapNine, drawBitmapNine(shallow_copy(r.bitmap), r.center, r.dst, r.paint));
107DRAW(DrawBitmapRectToRect,
mtklein42ddcd42014-11-21 08:48:35 -0800108 drawBitmapRectToRect(shallow_copy(r.bitmap), r.src, r.dst, r.paint,
109 SkCanvas::kNone_DrawBitmapRectFlag));
110DRAW(DrawBitmapRectToRectBleed,
111 drawBitmapRectToRect(shallow_copy(r.bitmap), r.src, r.dst, r.paint,
112 SkCanvas::kBleed_DrawBitmapRectFlag));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000113DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
piotaixr65151752014-10-16 11:58:39 -0700114DRAW(DrawImage, drawImage(r.image, r.left, r.top, r.paint));
115DRAW(DrawImageRect, drawImageRect(r.image, r.src, r.dst, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000116DRAW(DrawOval, drawOval(r.oval, r.paint));
117DRAW(DrawPaint, drawPaint(r.paint));
118DRAW(DrawPath, drawPath(r.path, r.paint));
mtklein9b222a52014-09-18 11:16:31 -0700119DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode, r.paint));
reedd5fa1a42014-08-09 11:08:05 -0700120DRAW(DrawPicture, drawPicture(r.picture, r.matrix, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000121DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
122DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
123DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
124DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
125DRAW(DrawRect, drawRect(r.rect, r.paint));
mtklein7cdc1ee2014-07-07 10:41:04 -0700126DRAW(DrawSprite, drawSprite(shallow_copy(r.bitmap), r.left, r.top, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000127DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
fmalita00d5c2c2014-08-21 08:53:26 -0700128DRAW(DrawTextBlob, drawTextBlob(r.blob, r.x, r.y, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000129DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, r.matrix, r.paint));
130DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
131 r.xmode.get(), r.indices, r.indexCount, r.paint));
mtklein29dfaa82014-09-04 14:12:44 -0700132DRAW(DrawData, drawData(r.data, r.length));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000133#undef DRAW
134
reed6be2aa92014-11-18 11:08:05 -0800135template <> void Draw::draw(const DrawDrawable& r) {
136 SkASSERT(r.index >= 0);
137 SkASSERT(r.index < fDrawableCount);
reed1bdfd3f2014-11-24 14:41:51 -0800138 if (fDrawables) {
139 SkASSERT(NULL == fDrawablePicts);
140 fCanvas->EXPERIMENTAL_drawDrawable(fDrawables[r.index]);
141 } else {
142 fCanvas->drawPicture(fDrawablePicts[r.index]);
143 }
reed6be2aa92014-11-18 11:08:05 -0800144}
145
mtklein5ad6ee12014-08-11 08:08:43 -0700146// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -0700147//
148// The interesting part here is how to calculate bounds for ops which don't
149// have intrinsic bounds. What is the bounds of a Save or a Translate?
150//
151// We answer this by thinking about a particular definition of bounds: if I
152// don't execute this op, pixels in this rectangle might draw incorrectly. So
153// the bounds of a Save, a Translate, a Restore, etc. are the union of the
154// bounds of Draw* ops that they might have an effect on. For any given
155// Save/Restore block, the bounds of the Save, the Restore, and any other
156// non-drawing ("control") ops inside are exactly the union of the bounds of
157// the drawing ops inside that block.
158//
159// To implement this, we keep a stack of active Save blocks. As we consume ops
160// inside the Save/Restore block, drawing ops are unioned with the bounds of
161// the block, and control ops are stashed away for later. When we finish the
162// block with a Restore, our bounds are complete, and we go back and fill them
163// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700164class FillBounds : SkNoncopyable {
165public:
robertphillips4e8e3422014-11-12 06:46:08 -0800166 FillBounds(const SkRect& cullRect, const SkRecord& record)
167 : fNumRecords(record.count())
168 , fCullRect(cullRect)
reed1bdfd3f2014-11-24 14:41:51 -0800169 , fBounds(record.count())
170 {
mtklein828ce1f2014-08-13 12:58:45 -0700171 // Calculate bounds for all ops. This won't go quite in order, so we'll need
172 // to store the bounds separately then feed them in to the BBH later in order.
mtklein6332f1d2014-08-19 07:09:40 -0700173 fCTM = &SkMatrix::I();
robertphillips4d52afe2014-11-03 08:19:44 -0800174 fCurrentClipBounds = fCullRect;
robertphillips4e8e3422014-11-12 06:46:08 -0800175 }
mtklein5ad6ee12014-08-11 08:08:43 -0700176
robertphillips4e8e3422014-11-12 06:46:08 -0800177 void setCurrentOp(unsigned currentOp) { fCurrentOp = currentOp; }
178
179 void cleanUp(SkBBoxHierarchy* bbh) {
mtklein828ce1f2014-08-13 12:58:45 -0700180 // If we have any lingering unpaired Saves, simulate restores to make
181 // sure all ops in those Save blocks have their bounds calculated.
182 while (!fSaveStack.isEmpty()) {
183 this->popSaveBlock();
184 }
185
186 // Any control ops not part of any Save/Restore block draw everywhere.
187 while (!fControlIndices.isEmpty()) {
robertphillips4d52afe2014-11-03 08:19:44 -0800188 this->popControl(fCullRect);
mtklein828ce1f2014-08-13 12:58:45 -0700189 }
190
191 // Finally feed all stored bounds into the BBH. They'll be returned in this order.
robertphillips89108792014-11-17 08:16:15 -0800192 if (bbh) {
193 bbh->insert(&fBounds, fNumRecords);
194 }
mtklein828ce1f2014-08-13 12:58:45 -0700195 }
mtklein5ad6ee12014-08-11 08:08:43 -0700196
mtkleina723b572014-08-15 11:49:49 -0700197 template <typename T> void operator()(const T& op) {
198 this->updateCTM(op);
199 this->updateClipBounds(op);
200 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700201 }
202
mtklein533eb782014-08-27 10:39:42 -0700203 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
204 typedef SkRect Bounds;
205
robertphillips4e8e3422014-11-12 06:46:08 -0800206 unsigned currentOp() const { return fCurrentOp; }
207 const SkMatrix& ctm() const { return *fCTM; }
robertphillips4e8e3422014-11-12 06:46:08 -0800208 const Bounds& getBounds(unsigned index) const { return fBounds[index]; }
209
210 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
211 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
212 // Inverted rectangles really confuse our BBHs.
213 rect.sort();
214
215 // Adjust the rect for its own paint.
216 if (!AdjustForPaint(paint, &rect)) {
217 // The paint could do anything to our bounds. The only safe answer is the current clip.
218 return fCurrentClipBounds;
219 }
220
221 // Adjust rect for all the paints from the SaveLayers we're inside.
222 if (!this->adjustForSaveLayerPaints(&rect)) {
223 // Same deal as above.
224 return fCurrentClipBounds;
225 }
226
227 // Map the rect back to identity space.
228 fCTM->mapRect(&rect);
229
230 // Nothing can draw outside the current clip.
231 // (Only bounded ops call into this method, so oddballs like Clear don't matter here.)
232 rect.intersect(fCurrentClipBounds);
233 return rect;
234 }
235
236private:
mtklein828ce1f2014-08-13 12:58:45 -0700237 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700238 int controlOps; // Number of control ops in this Save block, including the Save.
mtklein533eb782014-08-27 10:39:42 -0700239 Bounds bounds; // Bounds of everything in the block.
mtkleina723b572014-08-15 11:49:49 -0700240 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
mtklein828ce1f2014-08-13 12:58:45 -0700241 };
242
mtklein8e393bf2014-10-01 12:48:58 -0700243 // Only Restore and SetMatrix change the CTM.
244 template <typename T> void updateCTM(const T&) {}
mtklein6332f1d2014-08-19 07:09:40 -0700245 void updateCTM(const Restore& op) { fCTM = &op.matrix; }
246 void updateCTM(const SetMatrix& op) { fCTM = &op.matrix; }
mtkleina723b572014-08-15 11:49:49 -0700247
mtklein8e393bf2014-10-01 12:48:58 -0700248 // Most ops don't change the clip.
249 template <typename T> void updateClipBounds(const T&) {}
Mike Klein271a0302014-09-23 15:28:38 -0400250
mtklein8e393bf2014-10-01 12:48:58 -0700251 // Clip{Path,RRect,Rect,Region} obviously change the clip. They all know their bounds already.
252 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
253 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
254 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
255 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
Mike Klein271a0302014-09-23 15:28:38 -0400256
mtklein8e393bf2014-10-01 12:48:58 -0700257 // The bounds of clip ops need to be adjusted for the paints of saveLayers they're inside.
258 void updateClipBoundsForClipOp(const SkIRect& devBounds) {
259 Bounds clip = SkRect::Make(devBounds);
Mike Klein271a0302014-09-23 15:28:38 -0400260 // We don't call adjustAndMap() because as its last step it would intersect the adjusted
261 // clip bounds with the previous clip, exactly what we can't do when the clip grows.
robertphillips4d52afe2014-11-03 08:19:44 -0800262 fCurrentClipBounds = this->adjustForSaveLayerPaints(&clip) ? clip : fCullRect;
Mike Klein271a0302014-09-23 15:28:38 -0400263 }
264
mtklein8e393bf2014-10-01 12:48:58 -0700265 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
266 void updateClipBounds(const Restore& op) {
267 // This is just like the clip ops above, but we need to skip the effects (if any) of our
268 // paired saveLayer (if it is one); it has not yet been popped off the save stack. Our
269 // devBounds reflect the state of the world after the saveLayer/restore block is done,
270 // so they are not affected by the saveLayer's paint.
271 const int kSavesToIgnore = 1;
272 Bounds clip = SkRect::Make(op.devBounds);
273 fCurrentClipBounds =
robertphillips4d52afe2014-11-03 08:19:44 -0800274 this->adjustForSaveLayerPaints(&clip, kSavesToIgnore) ? clip : fCullRect;
mtklein8e393bf2014-10-01 12:48:58 -0700275 }
276
Mike Klein271a0302014-09-23 15:28:38 -0400277 // We also take advantage of SaveLayer bounds when present to further cut the clip down.
mtkleina723b572014-08-15 11:49:49 -0700278 void updateClipBounds(const SaveLayer& op) {
279 if (op.bounds) {
Mike Klein271a0302014-09-23 15:28:38 -0400280 // adjustAndMap() intersects these layer bounds with the previous clip for us.
281 fCurrentClipBounds = this->adjustAndMap(*op.bounds, op.paint);
mtkleina723b572014-08-15 11:49:49 -0700282 }
283 }
mtklein6cfa73a2014-08-13 13:33:49 -0700284
mtklein828ce1f2014-08-13 12:58:45 -0700285 // The bounds of these ops must be calculated when we hit the Restore
286 // from the bounds of the ops in the same Save block.
mtkleina723b572014-08-15 11:49:49 -0700287 void trackBounds(const Save&) { this->pushSaveBlock(NULL); }
mtkleina723b572014-08-15 11:49:49 -0700288 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
289 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700290
mtklein68199a22014-08-25 13:49:29 -0700291 void trackBounds(const SetMatrix&) { this->pushControl(); }
292 void trackBounds(const ClipRect&) { this->pushControl(); }
293 void trackBounds(const ClipRRect&) { this->pushControl(); }
294 void trackBounds(const ClipPath&) { this->pushControl(); }
295 void trackBounds(const ClipRegion&) { this->pushControl(); }
296 void trackBounds(const PushCull&) { this->pushControl(); }
297 void trackBounds(const PopCull&) { this->pushControl(); }
298 void trackBounds(const BeginCommentGroup&) { this->pushControl(); }
299 void trackBounds(const AddComment&) { this->pushControl(); }
300 void trackBounds(const EndCommentGroup&) { this->pushControl(); }
mtklein29dfaa82014-09-04 14:12:44 -0700301 void trackBounds(const DrawData&) { this->pushControl(); }
mtklein828ce1f2014-08-13 12:58:45 -0700302
303 // For all other ops, we can calculate and store the bounds directly now.
304 template <typename T> void trackBounds(const T& op) {
305 fBounds[fCurrentOp] = this->bounds(op);
306 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700307 }
308
mtkleina723b572014-08-15 11:49:49 -0700309 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700310 // Starting a new Save block. Push a new entry to represent that.
robertphillips4d52afe2014-11-03 08:19:44 -0800311 SaveBounds sb;
312 sb.controlOps = 0;
313 // If the paint affects transparent black, the bound shouldn't be smaller
314 // than the current clip bounds.
315 sb.bounds =
316 PaintMayAffectTransparentBlack(paint) ? fCurrentClipBounds : Bounds::MakeEmpty();
317 sb.paint = paint;
318
mtklein828ce1f2014-08-13 12:58:45 -0700319 fSaveStack.push(sb);
320 this->pushControl();
321 }
322
mtkleind910f542014-08-22 09:06:34 -0700323 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
dneto327f9052014-09-15 10:53:16 -0700324 if (paint) {
325 // FIXME: this is very conservative
326 if (paint->getImageFilter() || paint->getColorFilter()) {
327 return true;
328 }
329
330 // Unusual Xfermodes require us to process a saved layer
331 // even with operations outisde the clip.
332 // For example, DstIn is used by masking layers.
333 // https://code.google.com/p/skia/issues/detail?id=1291
334 // https://crbug.com/401593
335 SkXfermode* xfermode = paint->getXfermode();
336 SkXfermode::Mode mode;
337 // SrcOver is ok, and is also the common case with a NULL xfermode.
338 // So we should make that the fast path and bypass the mode extraction
339 // and test.
340 if (xfermode && xfermode->asMode(&mode)) {
341 switch (mode) {
342 // For each of the following transfer modes, if the source
343 // alpha is zero (our transparent black), the resulting
344 // blended alpha is not necessarily equal to the original
345 // destination alpha.
346 case SkXfermode::kClear_Mode:
347 case SkXfermode::kSrc_Mode:
348 case SkXfermode::kSrcIn_Mode:
349 case SkXfermode::kDstIn_Mode:
350 case SkXfermode::kSrcOut_Mode:
351 case SkXfermode::kDstATop_Mode:
352 case SkXfermode::kModulate_Mode:
353 return true;
354 break;
355 default:
356 break;
357 }
358 }
359 }
360 return false;
mtkleind910f542014-08-22 09:06:34 -0700361 }
362
mtklein533eb782014-08-27 10:39:42 -0700363 Bounds popSaveBlock() {
mtklein828ce1f2014-08-13 12:58:45 -0700364 // We're done the Save block. Apply the block's bounds to all control ops inside it.
365 SaveBounds sb;
366 fSaveStack.pop(&sb);
mtkleind910f542014-08-22 09:06:34 -0700367
mtklein828ce1f2014-08-13 12:58:45 -0700368 while (sb.controlOps --> 0) {
robertphillips4d52afe2014-11-03 08:19:44 -0800369 this->popControl(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700370 }
371
372 // This whole Save block may be part another Save block.
robertphillips4d52afe2014-11-03 08:19:44 -0800373 this->updateSaveBounds(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700374
375 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
robertphillips4d52afe2014-11-03 08:19:44 -0800376 return sb.bounds;
mtklein828ce1f2014-08-13 12:58:45 -0700377 }
378
379 void pushControl() {
380 fControlIndices.push(fCurrentOp);
381 if (!fSaveStack.isEmpty()) {
382 fSaveStack.top().controlOps++;
383 }
384 }
385
mtklein533eb782014-08-27 10:39:42 -0700386 void popControl(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700387 fBounds[fControlIndices.top()] = bounds;
388 fControlIndices.pop();
389 }
390
mtklein533eb782014-08-27 10:39:42 -0700391 void updateSaveBounds(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700392 // If we're in a Save block, expand its bounds to cover these bounds too.
393 if (!fSaveStack.isEmpty()) {
394 fSaveStack.top().bounds.join(bounds);
395 }
396 }
397
mtklein131a22b2014-08-25 14:16:15 -0700398 // FIXME: this method could use better bounds
mtklein533eb782014-08-27 10:39:42 -0700399 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; }
mtklein68199a22014-08-25 13:49:29 -0700400
robertphillips4d52afe2014-11-03 08:19:44 -0800401 Bounds bounds(const Clear&) const { return fCullRect; } // Ignores the clip.
mtklein533eb782014-08-27 10:39:42 -0700402 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; }
403 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700404
mtklein533eb782014-08-27 10:39:42 -0700405 Bounds bounds(const DrawSprite& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700406 const SkBitmap& bm = op.bitmap;
mtklein533eb782014-08-27 10:39:42 -0700407 return Bounds::MakeXYWH(op.left, op.top, bm.width(), bm.height()); // Ignores the matrix.
mtklein131a22b2014-08-25 14:16:15 -0700408 }
409
mtklein533eb782014-08-27 10:39:42 -0700410 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
411 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
412 Bounds bounds(const DrawRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700413 return this->adjustAndMap(op.rrect.rect(), &op.paint);
414 }
mtklein533eb782014-08-27 10:39:42 -0700415 Bounds bounds(const DrawDRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700416 return this->adjustAndMap(op.outer.rect(), &op.paint);
417 }
piotaixr65151752014-10-16 11:58:39 -0700418 Bounds bounds(const DrawImage& op) const {
419 const SkImage* image = op.image;
420 SkRect rect = SkRect::MakeXYWH(op.left, op.top, image->width(), image->height());
mtklein62b67ae2014-08-18 11:10:37 -0700421
piotaixr65151752014-10-16 11:58:39 -0700422 return this->adjustAndMap(rect, op.paint);
423 }
424 Bounds bounds(const DrawImageRect& op) const {
425 return this->adjustAndMap(op.dst, op.paint);
426 }
mtklein533eb782014-08-27 10:39:42 -0700427 Bounds bounds(const DrawBitmapRectToRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700428 return this->adjustAndMap(op.dst, op.paint);
429 }
mtklein42ddcd42014-11-21 08:48:35 -0800430 Bounds bounds(const DrawBitmapRectToRectBleed& op) const {
431 return this->adjustAndMap(op.dst, op.paint);
432 }
mtklein533eb782014-08-27 10:39:42 -0700433 Bounds bounds(const DrawBitmapNine& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700434 return this->adjustAndMap(op.dst, op.paint);
435 }
mtklein533eb782014-08-27 10:39:42 -0700436 Bounds bounds(const DrawBitmap& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700437 const SkBitmap& bm = op.bitmap;
438 return this->adjustAndMap(SkRect::MakeXYWH(op.left, op.top, bm.width(), bm.height()),
439 op.paint);
440 }
mtklein533eb782014-08-27 10:39:42 -0700441 Bounds bounds(const DrawBitmapMatrix& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700442 const SkBitmap& bm = op.bitmap;
443 SkRect dst = SkRect::MakeWH(bm.width(), bm.height());
444 op.matrix.mapRect(&dst);
445 return this->adjustAndMap(dst, op.paint);
446 }
447
mtklein533eb782014-08-27 10:39:42 -0700448 Bounds bounds(const DrawPath& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700449 return op.path.isInverseFillType() ? fCurrentClipBounds
450 : this->adjustAndMap(op.path.getBounds(), &op.paint);
451 }
mtklein533eb782014-08-27 10:39:42 -0700452 Bounds bounds(const DrawPoints& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700453 SkRect dst;
454 dst.set(op.pts, op.count);
455
456 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
457 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
458 dst.outset(stroke/2, stroke/2);
459
460 return this->adjustAndMap(dst, &op.paint);
461 }
mtklein533eb782014-08-27 10:39:42 -0700462 Bounds bounds(const DrawPatch& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700463 SkRect dst;
464 dst.set(op.cubics, SkPatchUtils::kNumCtrlPts);
465 return this->adjustAndMap(dst, &op.paint);
466 }
mtklein533eb782014-08-27 10:39:42 -0700467 Bounds bounds(const DrawVertices& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700468 SkRect dst;
469 dst.set(op.vertices, op.vertexCount);
470 return this->adjustAndMap(dst, &op.paint);
471 }
472
mtklein533eb782014-08-27 10:39:42 -0700473 Bounds bounds(const DrawPicture& op) const {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700474 SkRect dst = op.picture->cullRect();
mtklein131a22b2014-08-25 14:16:15 -0700475 if (op.matrix) {
476 op.matrix->mapRect(&dst);
477 }
478 return this->adjustAndMap(dst, op.paint);
479 }
mtklein62b67ae2014-08-18 11:10:37 -0700480
mtklein533eb782014-08-27 10:39:42 -0700481 Bounds bounds(const DrawPosText& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700482 const int N = op.paint.countText(op.text, op.byteLength);
483 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700484 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700485 }
486
487 SkRect dst;
mtklein937c9c72014-09-02 15:19:48 -0700488 dst.set(op.pos, N);
mtklein62b67ae2014-08-18 11:10:37 -0700489 AdjustTextForFontMetrics(&dst, op.paint);
490 return this->adjustAndMap(dst, &op.paint);
491 }
mtklein533eb782014-08-27 10:39:42 -0700492 Bounds bounds(const DrawPosTextH& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700493 const int N = op.paint.countText(op.text, op.byteLength);
494 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700495 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700496 }
497
498 SkScalar left = op.xpos[0], right = op.xpos[0];
499 for (int i = 1; i < N; i++) {
500 left = SkMinScalar(left, op.xpos[i]);
501 right = SkMaxScalar(right, op.xpos[i]);
502 }
503 SkRect dst = { left, op.y, right, op.y };
504 AdjustTextForFontMetrics(&dst, op.paint);
505 return this->adjustAndMap(dst, &op.paint);
506 }
mtklein533eb782014-08-27 10:39:42 -0700507 Bounds bounds(const DrawTextOnPath& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700508 SkRect dst = op.path.getBounds();
509
mtkleined167ac2014-10-29 16:07:10 -0700510 // Pad all sides by the maximum padding in any direction we'd normally apply.
mtklein131a22b2014-08-25 14:16:15 -0700511 SkRect pad = { 0, 0, 0, 0};
512 AdjustTextForFontMetrics(&pad, op.paint);
mtkleined167ac2014-10-29 16:07:10 -0700513
514 // That maximum padding happens to always be the right pad today.
515 SkASSERT(pad.fLeft == -pad.fRight);
516 SkASSERT(pad.fTop == -pad.fBottom);
517 SkASSERT(pad.fRight > pad.fBottom);
518 dst.outset(pad.fRight, pad.fRight);
mtklein131a22b2014-08-25 14:16:15 -0700519
520 return this->adjustAndMap(dst, &op.paint);
521 }
522
mtklein533eb782014-08-27 10:39:42 -0700523 Bounds bounds(const DrawTextBlob& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700524 SkRect dst = op.blob->bounds();
525 dst.offset(op.x, op.y);
mtklein131a22b2014-08-25 14:16:15 -0700526 return this->adjustAndMap(dst, &op.paint);
527 }
mtklein62b67ae2014-08-18 11:10:37 -0700528
reed6be2aa92014-11-18 11:08:05 -0800529 Bounds bounds(const DrawDrawable& op) const {
530 return this->adjustAndMap(op.worstCaseBounds, NULL);
531 }
532
mtklein62b67ae2014-08-18 11:10:37 -0700533 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
mtkleined167ac2014-10-29 16:07:10 -0700534#ifdef SK_DEBUG
535 SkRect correct = *rect;
536#endif
537 // crbug.com/373785 ~~> xPad = 4x yPad
538 // crbug.com/424824 ~~> bump yPad from 2x text size to 2.5x
539 const SkScalar yPad = 2.5f * paint.getTextSize(),
540 xPad = 4.0f * yPad;
541 rect->outset(xPad, yPad);
caryclark9a657fa2014-08-20 05:24:29 -0700542#ifdef SK_DEBUG
mtklein62b67ae2014-08-18 11:10:37 -0700543 SkPaint::FontMetrics metrics;
544 paint.getFontMetrics(&metrics);
mtkleined167ac2014-10-29 16:07:10 -0700545 correct.fLeft += metrics.fXMin;
546 correct.fTop += metrics.fTop;
547 correct.fRight += metrics.fXMax;
548 correct.fBottom += metrics.fBottom;
mtkleind13291a2014-08-21 14:46:49 -0700549 // See skia:2862 for why we ignore small text sizes.
mtkleined167ac2014-10-29 16:07:10 -0700550 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
551 "%f %f %f %f vs. %f %f %f %f\n",
552 -xPad, -yPad, +xPad, +yPad,
553 metrics.fXMin, metrics.fTop, metrics.fXMax, metrics.fBottom);
mtkleina19afb42014-08-19 17:47:14 -0700554#endif
mtklein62b67ae2014-08-18 11:10:37 -0700555 }
556
mtklein479601b2014-08-18 08:45:33 -0700557 // Returns true if rect was meaningfully adjusted for the effects of paint,
558 // false if the paint could affect the rect in unknown ways.
559 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700560 if (paint) {
561 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700562 *rect = paint->computeFastBounds(*rect, rect);
563 return true;
mtkleina723b572014-08-15 11:49:49 -0700564 }
mtklein479601b2014-08-18 08:45:33 -0700565 return false;
566 }
567 return true;
568 }
569
mtklein8e393bf2014-10-01 12:48:58 -0700570 bool adjustForSaveLayerPaints(SkRect* rect, int savesToIgnore = 0) const {
571 for (int i = fSaveStack.count() - 1 - savesToIgnore; i >= 0; i--) {
Mike Klein271a0302014-09-23 15:28:38 -0400572 if (!AdjustForPaint(fSaveStack[i].paint, rect)) {
573 return false;
574 }
575 }
576 return true;
577 }
578
robertphillips4e8e3422014-11-12 06:46:08 -0800579 const unsigned fNumRecords;
mtkleina723b572014-08-15 11:49:49 -0700580
robertphillips4d52afe2014-11-03 08:19:44 -0800581 // We do not guarantee anything for operations outside of the cull rect
582 const SkRect fCullRect;
583
mtklein533eb782014-08-27 10:39:42 -0700584 // Conservative identity-space bounds for each op in the SkRecord.
585 SkAutoTMalloc<Bounds> fBounds;
mtkleina723b572014-08-15 11:49:49 -0700586
587 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
588 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
mtklein533eb782014-08-27 10:39:42 -0700589 // identity-space bounds of the current clip (fCurrentClipBounds).
mtklein828ce1f2014-08-13 12:58:45 -0700590 unsigned fCurrentOp;
mtklein6332f1d2014-08-19 07:09:40 -0700591 const SkMatrix* fCTM;
mtklein533eb782014-08-27 10:39:42 -0700592 Bounds fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700593
594 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700595 SkTDArray<SaveBounds> fSaveStack;
596 SkTDArray<unsigned> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700597};
598
robertphillips4e8e3422014-11-12 06:46:08 -0800599// SkRecord visitor to gather saveLayer/restore information.
600class CollectLayers : SkNoncopyable {
601public:
reed1bdfd3f2014-11-24 14:41:51 -0800602 CollectLayers(const SkRect& cullRect, const SkRecord& record,
603 const SkPicture::SnapshotArray* pictList, SkLayerInfo* accelData)
robertphillips4e8e3422014-11-12 06:46:08 -0800604 : fSaveLayersInStack(0)
605 , fAccelData(accelData)
reed1bdfd3f2014-11-24 14:41:51 -0800606 , fPictList(pictList)
607 , fFillBounds(cullRect, record)
608 {}
robertphillips4e8e3422014-11-12 06:46:08 -0800609
610 void setCurrentOp(unsigned currentOp) { fFillBounds.setCurrentOp(currentOp); }
611
612 void cleanUp(SkBBoxHierarchy* bbh) {
613 // fFillBounds must perform its cleanUp first so that all the bounding
614 // boxes associated with unbalanced restores are updated (prior to
615 // fetching their bound in popSaveLayerInfo).
616 fFillBounds.cleanUp(bbh);
617
618 while (!fSaveLayerStack.isEmpty()) {
619 this->popSaveLayerInfo();
620 }
621 }
622
623 template <typename T> void operator()(const T& op) {
624 fFillBounds(op);
625 this->trackSaveLayers(op);
626 }
627
628private:
629 struct SaveLayerInfo {
630 SaveLayerInfo() { }
robertphillips74576eb2014-11-12 07:25:02 -0800631 SaveLayerInfo(int opIndex, bool isSaveLayer, const SkPaint* paint)
robertphillips4e8e3422014-11-12 06:46:08 -0800632 : fStartIndex(opIndex)
633 , fIsSaveLayer(isSaveLayer)
634 , fHasNestedSaveLayer(false)
robertphillips74576eb2014-11-12 07:25:02 -0800635 , fPaint(paint) {
robertphillips4e8e3422014-11-12 06:46:08 -0800636 }
637
638 int fStartIndex;
639 bool fIsSaveLayer;
640 bool fHasNestedSaveLayer;
641 const SkPaint* fPaint;
robertphillips4e8e3422014-11-12 06:46:08 -0800642 };
643
644 template <typename T> void trackSaveLayers(const T& op) {
645 /* most ops aren't involved in saveLayers */
646 }
647 void trackSaveLayers(const Save& s) { this->pushSaveLayerInfo(false, NULL); }
648 void trackSaveLayers(const SaveLayer& sl) { this->pushSaveLayerInfo(true, sl.paint); }
649 void trackSaveLayers(const Restore& r) { this->popSaveLayerInfo(); }
650
reed1bdfd3f2014-11-24 14:41:51 -0800651 void trackSaveLayersForPicture(const SkPicture* picture, const SkPaint* paint) {
robertphillips4e8e3422014-11-12 06:46:08 -0800652 // For sub-pictures, we wrap their layer information within the parent
653 // picture's rendering hierarchy
robertphillips82365912014-11-12 09:32:34 -0800654 SkPicture::AccelData::Key key = SkLayerInfo::ComputeKey();
robertphillips4e8e3422014-11-12 06:46:08 -0800655
robertphillips82365912014-11-12 09:32:34 -0800656 const SkLayerInfo* childData =
reed1bdfd3f2014-11-24 14:41:51 -0800657 static_cast<const SkLayerInfo*>(picture->EXPERIMENTAL_getAccelData(key));
robertphillips4e8e3422014-11-12 06:46:08 -0800658 if (!childData) {
659 // If the child layer hasn't been generated with saveLayer data we
660 // assume the worst (i.e., that it does contain layers which nest
661 // inside existing layers). Layers within sub-pictures that don't
662 // have saveLayer data cannot be hoisted.
663 // TODO: could the analysis data be use to fine tune this?
664 this->updateStackForSaveLayer();
665 return;
666 }
667
robertphillips82365912014-11-12 09:32:34 -0800668 for (int i = 0; i < childData->numBlocks(); ++i) {
669 const SkLayerInfo::BlockInfo& src = childData->block(i);
robertphillips4e8e3422014-11-12 06:46:08 -0800670
reed1bdfd3f2014-11-24 14:41:51 -0800671 FillBounds::Bounds newBound = fFillBounds.adjustAndMap(src.fBounds, paint);
robertphillips74576eb2014-11-12 07:25:02 -0800672 if (newBound.isEmpty()) {
robertphillips4e8e3422014-11-12 06:46:08 -0800673 continue;
674 }
675
676 this->updateStackForSaveLayer();
677
robertphillips82365912014-11-12 09:32:34 -0800678 SkLayerInfo::BlockInfo& dst = fAccelData->addBlock();
robertphillips4e8e3422014-11-12 06:46:08 -0800679
680 // If src.fPicture is NULL the layer is in dp.picture; otherwise
681 // it belongs to a sub-picture.
reed1bdfd3f2014-11-24 14:41:51 -0800682 dst.fPicture = src.fPicture ? src.fPicture : picture;
robertphillips4e8e3422014-11-12 06:46:08 -0800683 dst.fPicture->ref();
robertphillips74576eb2014-11-12 07:25:02 -0800684 dst.fBounds = newBound;
robertphillips4e8e3422014-11-12 06:46:08 -0800685 dst.fLocalMat = src.fLocalMat;
686 dst.fPreMat = src.fPreMat;
687 dst.fPreMat.postConcat(fFillBounds.ctm());
688 if (src.fPaint) {
689 dst.fPaint = SkNEW_ARGS(SkPaint, (*src.fPaint));
690 }
691 dst.fSaveLayerOpID = src.fSaveLayerOpID;
692 dst.fRestoreOpID = src.fRestoreOpID;
693 dst.fHasNestedLayers = src.fHasNestedLayers;
694 dst.fIsNested = fSaveLayersInStack > 0 || src.fIsNested;
695 }
696 }
697
reed1bdfd3f2014-11-24 14:41:51 -0800698 void trackSaveLayers(const DrawPicture& dp) {
699 this->trackSaveLayersForPicture(dp.picture, dp.paint);
700 }
701
702 void trackSaveLayers(const DrawDrawable& dp) {
703 SkASSERT(fPictList);
704 SkASSERT(dp.index >= 0 && dp.index < fPictList->count());
705 const SkPaint* paint = NULL; // drawables don't get a side-car paint
706 this->trackSaveLayersForPicture(fPictList->begin()[dp.index], paint);
707 }
708
robertphillips4e8e3422014-11-12 06:46:08 -0800709 // Inform all the saveLayers already on the stack that they now have a
710 // nested saveLayer inside them
711 void updateStackForSaveLayer() {
712 for (int index = fSaveLayerStack.count() - 1; index >= 0; --index) {
713 if (fSaveLayerStack[index].fHasNestedSaveLayer) {
714 break;
715 }
716 fSaveLayerStack[index].fHasNestedSaveLayer = true;
717 if (fSaveLayerStack[index].fIsSaveLayer) {
718 break;
719 }
720 }
721 }
722
723 void pushSaveLayerInfo(bool isSaveLayer, const SkPaint* paint) {
724 if (isSaveLayer) {
725 this->updateStackForSaveLayer();
726 ++fSaveLayersInStack;
727 }
728
robertphillips74576eb2014-11-12 07:25:02 -0800729 fSaveLayerStack.push(SaveLayerInfo(fFillBounds.currentOp(), isSaveLayer, paint));
robertphillips4e8e3422014-11-12 06:46:08 -0800730 }
731
732 void popSaveLayerInfo() {
733 if (fSaveLayerStack.count() <= 0) {
734 SkASSERT(false);
735 return;
736 }
737
738 SaveLayerInfo sli;
739 fSaveLayerStack.pop(&sli);
740
741 if (!sli.fIsSaveLayer) {
742 return;
743 }
744
745 --fSaveLayersInStack;
746
robertphillips82365912014-11-12 09:32:34 -0800747 SkLayerInfo::BlockInfo& block = fAccelData->addBlock();
robertphillips4e8e3422014-11-12 06:46:08 -0800748
robertphillips82365912014-11-12 09:32:34 -0800749 SkASSERT(NULL == block.fPicture); // This layer is in the top-most picture
robertphillips4e8e3422014-11-12 06:46:08 -0800750
robertphillips82365912014-11-12 09:32:34 -0800751 block.fBounds = fFillBounds.getBounds(sli.fStartIndex);
752 block.fLocalMat = fFillBounds.ctm();
753 block.fPreMat = SkMatrix::I();
robertphillips4e8e3422014-11-12 06:46:08 -0800754 if (sli.fPaint) {
robertphillips82365912014-11-12 09:32:34 -0800755 block.fPaint = SkNEW_ARGS(SkPaint, (*sli.fPaint));
robertphillips4e8e3422014-11-12 06:46:08 -0800756 }
robertphillips82365912014-11-12 09:32:34 -0800757 block.fSaveLayerOpID = sli.fStartIndex;
758 block.fRestoreOpID = fFillBounds.currentOp();
759 block.fHasNestedLayers = sli.fHasNestedSaveLayer;
760 block.fIsNested = fSaveLayersInStack > 0;
robertphillips4e8e3422014-11-12 06:46:08 -0800761 }
762
763 // Used to collect saveLayer information for layer hoisting
764 int fSaveLayersInStack;
765 SkTDArray<SaveLayerInfo> fSaveLayerStack;
robertphillips82365912014-11-12 09:32:34 -0800766 SkLayerInfo* fAccelData;
reed1bdfd3f2014-11-24 14:41:51 -0800767 const SkPicture::SnapshotArray* fPictList;
robertphillips4e8e3422014-11-12 06:46:08 -0800768
769 SkRecords::FillBounds fFillBounds;
770};
robertphillips4e8e3422014-11-12 06:46:08 -0800771
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000772} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700773
robertphillips4d52afe2014-11-03 08:19:44 -0800774void SkRecordFillBounds(const SkRect& cullRect, const SkRecord& record, SkBBoxHierarchy* bbh) {
robertphillips4e8e3422014-11-12 06:46:08 -0800775 SkRecords::FillBounds visitor(cullRect, record);
776
777 for (unsigned curOp = 0; curOp < record.count(); curOp++) {
778 visitor.setCurrentOp(curOp);
779 record.visit<void>(curOp, visitor);
780 }
781
782 visitor.cleanUp(bbh);
mtklein5ad6ee12014-08-11 08:08:43 -0700783}
robertphillips4e8e3422014-11-12 06:46:08 -0800784
robertphillips4e8e3422014-11-12 06:46:08 -0800785void SkRecordComputeLayers(const SkRect& cullRect, const SkRecord& record,
reed1bdfd3f2014-11-24 14:41:51 -0800786 const SkPicture::SnapshotArray* pictList, SkBBoxHierarchy* bbh,
787 SkLayerInfo* data) {
788 SkRecords::CollectLayers visitor(cullRect, record, pictList, data);
robertphillips4e8e3422014-11-12 06:46:08 -0800789
790 for (unsigned curOp = 0; curOp < record.count(); curOp++) {
791 visitor.setCurrentOp(curOp);
792 record.visit<void>(curOp, visitor);
793 }
794
795 visitor.cleanUp(bbh);
796}
robertphillips4e8e3422014-11-12 06:46:08 -0800797