1 /*
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
8 #include "include/core/SkBBHFactory.h"
9 #include "include/core/SkImage.h"
10 #include "src/core/SkCanvasPriv.h"
11 #include "src/core/SkRecordDraw.h"
12 #include "src/utils/SkPatchUtils.h"
13
SkRecordDraw(const SkRecord & record,SkCanvas * canvas,SkPicture const * const drawablePicts[],SkDrawable * const drawables[],int drawableCount,const SkBBoxHierarchy * bbh,SkPicture::AbortCallback * callback)14 void SkRecordDraw(const SkRecord& record,
15 SkCanvas* canvas,
16 SkPicture const* const drawablePicts[],
17 SkDrawable* const drawables[],
18 int drawableCount,
19 const SkBBoxHierarchy* bbh,
20 SkPicture::AbortCallback* callback) {
21 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
22
23 if (bbh) {
24 // Draw only ops that affect pixels in the canvas's current clip.
25 // The SkRecord and BBH were recorded in identity space. This canvas
26 // is not necessarily in that same space. getLocalClipBounds() returns us
27 // this canvas' clip bounds transformed back into identity space, which
28 // lets us query the BBH.
29 SkRect query = canvas->getLocalClipBounds();
30
31 std::vector<int> ops;
32 bbh->search(query, &ops);
33
34 SkRecords::Draw draw(canvas, drawablePicts, drawables, drawableCount);
35 for (int i = 0; i < (int)ops.size(); i++) {
36 if (callback && callback->abort()) {
37 return;
38 }
39 // This visit call uses the SkRecords::Draw::operator() to call
40 // methods on the |canvas|, wrapped by methods defined with the
41 // DRAW() macro.
42 record.visit(ops[i], draw);
43 }
44 } else {
45 // Draw all ops.
46 SkRecords::Draw draw(canvas, drawablePicts, drawables, drawableCount);
47 for (int i = 0; i < record.count(); i++) {
48 if (callback && callback->abort()) {
49 return;
50 }
51 // This visit call uses the SkRecords::Draw::operator() to call
52 // methods on the |canvas|, wrapped by methods defined with the
53 // DRAW() macro.
54 record.visit(i, draw);
55 }
56 }
57 }
58
SkRecordPartialDraw(const SkRecord & record,SkCanvas * canvas,SkPicture const * const drawablePicts[],int drawableCount,int start,int stop,const SkMatrix & initialCTM)59 void SkRecordPartialDraw(const SkRecord& record, SkCanvas* canvas,
60 SkPicture const* const drawablePicts[], int drawableCount,
61 int start, int stop,
62 const SkMatrix& initialCTM) {
63 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
64
65 stop = std::min(stop, record.count());
66 SkRecords::Draw draw(canvas, drawablePicts, nullptr, drawableCount, &initialCTM);
67 for (int i = start; i < stop; i++) {
68 record.visit(i, draw);
69 }
70 }
71
72 namespace SkRecords {
73
74 // NoOps draw nothing.
draw(const NoOp &)75 template <> void Draw::draw(const NoOp&) {}
76
77 #define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; }
78 DRAW(Flush, flush());
79 DRAW(Restore, restore());
80 DRAW(Save, save());
81 DRAW(SaveLayer, saveLayer(SkCanvas::SaveLayerRec(r.bounds,
82 r.paint,
83 r.backdrop.get(),
84 r.clipMask.get(),
85 r.clipMatrix,
86 r.saveLayerFlags)));
87
draw(const SaveBehind & r)88 template <> void Draw::draw(const SaveBehind& r) {
89 SkCanvasPriv::SaveBehind(fCanvas, r.subset);
90 }
91
draw(const DrawBehind & r)92 template <> void Draw::draw(const DrawBehind& r) {
93 SkCanvasPriv::DrawBehind(fCanvas, r.paint);
94 }
95
96 DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
97 DRAW(Concat44, concat44(r.matrix));
98 DRAW(Concat, concat(r.matrix));
99 DRAW(Translate, translate(r.dx, r.dy));
100 DRAW(Scale, scale(r.sx, r.sy));
101
102 DRAW(ClipPath, clipPath(r.path, r.opAA.op(), r.opAA.aa()));
103 DRAW(ClipRRect, clipRRect(r.rrect, r.opAA.op(), r.opAA.aa()));
104 DRAW(ClipRect, clipRect(r.rect, r.opAA.op(), r.opAA.aa()));
105 DRAW(ClipRegion, clipRegion(r.region, r.op));
106
107 DRAW(DrawArc, drawArc(r.oval, r.startAngle, r.sweepAngle, r.useCenter, r.paint));
108 DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
109 DRAW(DrawImage, drawImage(r.image.get(), r.left, r.top, r.paint));
110
draw(const DrawImageLattice & r)111 template <> void Draw::draw(const DrawImageLattice& r) {
112 SkCanvas::Lattice lattice;
113 lattice.fXCount = r.xCount;
114 lattice.fXDivs = r.xDivs;
115 lattice.fYCount = r.yCount;
116 lattice.fYDivs = r.yDivs;
117 lattice.fRectTypes = (0 == r.flagCount) ? nullptr : r.flags;
118 lattice.fColors = (0 == r.flagCount) ? nullptr : r.colors;
119 lattice.fBounds = &r.src;
120 fCanvas->drawImageLattice(r.image.get(), lattice, r.dst, r.paint);
121 }
122
123 DRAW(DrawImageRect, legacy_drawImageRect(r.image.get(), r.src, r.dst, r.paint, r.constraint));
124 DRAW(DrawImageNine, drawImageNine(r.image.get(), r.center, r.dst, r.paint));
125 DRAW(DrawOval, drawOval(r.oval, r.paint));
126 DRAW(DrawPaint, drawPaint(r.paint));
127 DRAW(DrawPath, drawPath(r.path, r.paint));
128 DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.bmode, r.paint));
129 DRAW(DrawPicture, drawPicture(r.picture.get(), &r.matrix, r.paint));
130 DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
131 DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
132 DRAW(DrawRect, drawRect(r.rect, r.paint));
133 DRAW(DrawRegion, drawRegion(r.region, r.paint));
134 DRAW(DrawTextBlob, drawTextBlob(r.blob.get(), r.x, r.y, r.paint));
135 DRAW(DrawAtlas, drawAtlas(r.atlas.get(),
136 r.xforms, r.texs, r.colors, r.count, r.mode, r.cull, r.paint));
137 DRAW(DrawVertices, drawVertices(r.vertices, r.bones, r.boneCount, r.bmode, r.paint));
138 DRAW(DrawShadowRec, private_draw_shadow_rec(r.path, r.rec));
139 DRAW(DrawAnnotation, drawAnnotation(r.rect, r.key.c_str(), r.value.get()));
140
141 DRAW(DrawEdgeAAQuad, experimental_DrawEdgeAAQuad(
142 r.rect, r.clip, r.aa, r.color, r.mode));
143 DRAW(DrawEdgeAAImageSet, experimental_DrawEdgeAAImageSet(
144 r.set.get(), r.count, r.dstClips, r.preViewMatrices, r.paint, r.constraint));
145
146 #undef DRAW
147
draw(const DrawDrawable & r)148 template <> void Draw::draw(const DrawDrawable& r) {
149 SkASSERT(r.index >= 0);
150 SkASSERT(r.index < fDrawableCount);
151 if (fDrawables) {
152 SkASSERT(nullptr == fDrawablePicts);
153 fCanvas->drawDrawable(fDrawables[r.index], r.matrix);
154 } else {
155 fCanvas->drawPicture(fDrawablePicts[r.index], r.matrix, nullptr);
156 }
157 }
158
159 // This is an SkRecord visitor that fills an SkBBoxHierarchy.
160 //
161 // The interesting part here is how to calculate bounds for ops which don't
162 // have intrinsic bounds. What is the bounds of a Save or a Translate?
163 //
164 // We answer this by thinking about a particular definition of bounds: if I
165 // don't execute this op, pixels in this rectangle might draw incorrectly. So
166 // the bounds of a Save, a Translate, a Restore, etc. are the union of the
167 // bounds of Draw* ops that they might have an effect on. For any given
168 // Save/Restore block, the bounds of the Save, the Restore, and any other
169 // non-drawing ("control") ops inside are exactly the union of the bounds of
170 // the drawing ops inside that block.
171 //
172 // To implement this, we keep a stack of active Save blocks. As we consume ops
173 // inside the Save/Restore block, drawing ops are unioned with the bounds of
174 // the block, and control ops are stashed away for later. When we finish the
175 // block with a Restore, our bounds are complete, and we go back and fill them
176 // in for all the control ops we stashed away.
177 class FillBounds : SkNoncopyable {
178 public:
FillBounds(const SkRect & cullRect,const SkRecord & record,SkRect bounds[])179 FillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[])
180 : fCullRect(cullRect)
181 , fBounds(bounds) {
182 fCTM = SkMatrix::I();
183
184 // We push an extra save block to track the bounds of any top-level control operations.
185 fSaveStack.push_back({ 0, Bounds::MakeEmpty(), nullptr, fCTM });
186 }
187
~FillBounds()188 ~FillBounds() {
189 // If we have any lingering unpaired Saves, simulate restores to make
190 // sure all ops in those Save blocks have their bounds calculated.
191 while (!fSaveStack.isEmpty()) {
192 this->popSaveBlock();
193 }
194
195 // Any control ops not part of any Save/Restore block draw everywhere.
196 while (!fControlIndices.isEmpty()) {
197 this->popControl(fCullRect);
198 }
199 }
200
setCurrentOp(int currentOp)201 void setCurrentOp(int currentOp) { fCurrentOp = currentOp; }
202
203
operator ()(const T & op)204 template <typename T> void operator()(const T& op) {
205 this->updateCTM(op);
206 this->trackBounds(op);
207 }
208
209 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
210 typedef SkRect Bounds;
211
212 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
adjustAndMap(SkRect rect,const SkPaint * paint) const213 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
214 // Inverted rectangles really confuse our BBHs.
215 rect.sort();
216
217 // Adjust the rect for its own paint.
218 if (!AdjustForPaint(paint, &rect)) {
219 // The paint could do anything to our bounds. The only safe answer is the cull.
220 return fCullRect;
221 }
222
223 // Adjust rect for all the paints from the SaveLayers we're inside.
224 if (!this->adjustForSaveLayerPaints(&rect)) {
225 // Same deal as above.
226 return fCullRect;
227 }
228
229 // Map the rect back to identity space.
230 fCTM.mapRect(&rect);
231
232 // Nothing can draw outside the cull rect.
233 if (!rect.intersect(fCullRect)) {
234 return Bounds::MakeEmpty();
235 }
236
237 return rect;
238 }
239
240 private:
241 struct SaveBounds {
242 int controlOps; // Number of control ops in this Save block, including the Save.
243 Bounds bounds; // Bounds of everything in the block.
244 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
245 SkMatrix ctm;
246 };
247
248 // Only Restore, SetMatrix, Concat, and Translate change the CTM.
updateCTM(const T &)249 template <typename T> void updateCTM(const T&) {}
updateCTM(const Restore & op)250 void updateCTM(const Restore& op) { fCTM = op.matrix; }
updateCTM(const SetMatrix & op)251 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
updateCTM(const Concat44 & op)252 void updateCTM(const Concat44& op) { fCTM.preConcat(op.matrix.asM33()); }
updateCTM(const Concat & op)253 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
updateCTM(const Scale & op)254 void updateCTM(const Scale& op) { fCTM.preScale(op.sx, op.sy); }
updateCTM(const Translate & op)255 void updateCTM(const Translate& op) { fCTM.preTranslate(op.dx, op.dy); }
256
257 // The bounds of these ops must be calculated when we hit the Restore
258 // from the bounds of the ops in the same Save block.
trackBounds(const Save &)259 void trackBounds(const Save&) { this->pushSaveBlock(nullptr); }
trackBounds(const SaveLayer & op)260 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
trackBounds(const SaveBehind &)261 void trackBounds(const SaveBehind&) { this->pushSaveBlock(nullptr); }
trackBounds(const Restore &)262 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
263
trackBounds(const SetMatrix &)264 void trackBounds(const SetMatrix&) { this->pushControl(); }
trackBounds(const Concat &)265 void trackBounds(const Concat&) { this->pushControl(); }
trackBounds(const Concat44 &)266 void trackBounds(const Concat44&) { this->pushControl(); }
trackBounds(const Scale &)267 void trackBounds(const Scale&) { this->pushControl(); }
trackBounds(const Translate &)268 void trackBounds(const Translate&) { this->pushControl(); }
trackBounds(const ClipRect &)269 void trackBounds(const ClipRect&) { this->pushControl(); }
trackBounds(const ClipRRect &)270 void trackBounds(const ClipRRect&) { this->pushControl(); }
trackBounds(const ClipPath &)271 void trackBounds(const ClipPath&) { this->pushControl(); }
trackBounds(const ClipRegion &)272 void trackBounds(const ClipRegion&) { this->pushControl(); }
273
274
275 // For all other ops, we can calculate and store the bounds directly now.
trackBounds(const T & op)276 template <typename T> void trackBounds(const T& op) {
277 fBounds[fCurrentOp] = this->bounds(op);
278 this->updateSaveBounds(fBounds[fCurrentOp]);
279 }
280
pushSaveBlock(const SkPaint * paint)281 void pushSaveBlock(const SkPaint* paint) {
282 // Starting a new Save block. Push a new entry to represent that.
283 SaveBounds sb;
284 sb.controlOps = 0;
285 // If the paint affects transparent black,
286 // the bound shouldn't be smaller than the cull.
287 sb.bounds =
288 PaintMayAffectTransparentBlack(paint) ? fCullRect : Bounds::MakeEmpty();
289 sb.paint = paint;
290 sb.ctm = this->fCTM;
291
292 fSaveStack.push_back(sb);
293 this->pushControl();
294 }
295
PaintMayAffectTransparentBlack(const SkPaint * paint)296 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
297 if (paint) {
298 // FIXME: this is very conservative
299 if (paint->getImageFilter() || paint->getColorFilter()) {
300 return true;
301 }
302
303 // Unusual blendmodes require us to process a saved layer
304 // even with operations outisde the clip.
305 // For example, DstIn is used by masking layers.
306 // https://code.google.com/p/skia/issues/detail?id=1291
307 // https://crbug.com/401593
308 switch (paint->getBlendMode()) {
309 // For each of the following transfer modes, if the source
310 // alpha is zero (our transparent black), the resulting
311 // blended alpha is not necessarily equal to the original
312 // destination alpha.
313 case SkBlendMode::kClear:
314 case SkBlendMode::kSrc:
315 case SkBlendMode::kSrcIn:
316 case SkBlendMode::kDstIn:
317 case SkBlendMode::kSrcOut:
318 case SkBlendMode::kDstATop:
319 case SkBlendMode::kModulate:
320 return true;
321 break;
322 default:
323 break;
324 }
325 }
326 return false;
327 }
328
popSaveBlock()329 Bounds popSaveBlock() {
330 // We're done the Save block. Apply the block's bounds to all control ops inside it.
331 SaveBounds sb;
332 fSaveStack.pop(&sb);
333
334 while (sb.controlOps --> 0) {
335 this->popControl(sb.bounds);
336 }
337
338 // This whole Save block may be part another Save block.
339 this->updateSaveBounds(sb.bounds);
340
341 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
342 return sb.bounds;
343 }
344
pushControl()345 void pushControl() {
346 fControlIndices.push_back(fCurrentOp);
347 if (!fSaveStack.isEmpty()) {
348 fSaveStack.top().controlOps++;
349 }
350 }
351
popControl(const Bounds & bounds)352 void popControl(const Bounds& bounds) {
353 fBounds[fControlIndices.top()] = bounds;
354 fControlIndices.pop();
355 }
356
updateSaveBounds(const Bounds & bounds)357 void updateSaveBounds(const Bounds& bounds) {
358 // If we're in a Save block, expand its bounds to cover these bounds too.
359 if (!fSaveStack.isEmpty()) {
360 fSaveStack.top().bounds.join(bounds);
361 }
362 }
363
bounds(const Flush &) const364 Bounds bounds(const Flush&) const { return fCullRect; }
365
bounds(const DrawPaint &) const366 Bounds bounds(const DrawPaint&) const { return fCullRect; }
bounds(const DrawBehind &) const367 Bounds bounds(const DrawBehind&) const { return fCullRect; }
bounds(const NoOp &) const368 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
369
bounds(const DrawRect & op) const370 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
bounds(const DrawRegion & op) const371 Bounds bounds(const DrawRegion& op) const {
372 SkRect rect = SkRect::Make(op.region.getBounds());
373 return this->adjustAndMap(rect, &op.paint);
374 }
bounds(const DrawOval & op) const375 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
376 // Tighter arc bounds?
bounds(const DrawArc & op) const377 Bounds bounds(const DrawArc& op) const { return this->adjustAndMap(op.oval, &op.paint); }
bounds(const DrawRRect & op) const378 Bounds bounds(const DrawRRect& op) const {
379 return this->adjustAndMap(op.rrect.rect(), &op.paint);
380 }
bounds(const DrawDRRect & op) const381 Bounds bounds(const DrawDRRect& op) const {
382 return this->adjustAndMap(op.outer.rect(), &op.paint);
383 }
bounds(const DrawImage & op) const384 Bounds bounds(const DrawImage& op) const {
385 const SkImage* image = op.image.get();
386 SkRect rect = SkRect::MakeXYWH(op.left, op.top, image->width(), image->height());
387
388 return this->adjustAndMap(rect, op.paint);
389 }
bounds(const DrawImageLattice & op) const390 Bounds bounds(const DrawImageLattice& op) const {
391 return this->adjustAndMap(op.dst, op.paint);
392 }
bounds(const DrawImageRect & op) const393 Bounds bounds(const DrawImageRect& op) const {
394 return this->adjustAndMap(op.dst, op.paint);
395 }
bounds(const DrawImageNine & op) const396 Bounds bounds(const DrawImageNine& op) const {
397 return this->adjustAndMap(op.dst, op.paint);
398 }
bounds(const DrawPath & op) const399 Bounds bounds(const DrawPath& op) const {
400 return op.path.isInverseFillType() ? fCullRect
401 : this->adjustAndMap(op.path.getBounds(), &op.paint);
402 }
bounds(const DrawPoints & op) const403 Bounds bounds(const DrawPoints& op) const {
404 SkRect dst;
405 dst.setBounds(op.pts, op.count);
406
407 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
408 SkScalar stroke = std::max(op.paint.getStrokeWidth(), 0.01f);
409 dst.outset(stroke/2, stroke/2);
410
411 return this->adjustAndMap(dst, &op.paint);
412 }
bounds(const DrawPatch & op) const413 Bounds bounds(const DrawPatch& op) const {
414 SkRect dst;
415 dst.setBounds(op.cubics, SkPatchUtils::kNumCtrlPts);
416 return this->adjustAndMap(dst, &op.paint);
417 }
bounds(const DrawVertices & op) const418 Bounds bounds(const DrawVertices& op) const {
419 return this->adjustAndMap(op.vertices->bounds(), &op.paint);
420 }
421
bounds(const DrawAtlas & op) const422 Bounds bounds(const DrawAtlas& op) const {
423 if (op.cull) {
424 // TODO: <reed> can we pass nullptr for the paint? Isn't cull already "correct"
425 // for the paint (by the caller)?
426 return this->adjustAndMap(*op.cull, op.paint);
427 } else {
428 return fCullRect;
429 }
430 }
431
bounds(const DrawShadowRec & op) const432 Bounds bounds(const DrawShadowRec& op) const {
433 SkRect bounds;
434 SkDrawShadowMetrics::GetLocalBounds(op.path, op.rec, fCTM, &bounds);
435 return this->adjustAndMap(bounds, nullptr);
436 }
437
bounds(const DrawPicture & op) const438 Bounds bounds(const DrawPicture& op) const {
439 SkRect dst = op.picture->cullRect();
440 op.matrix.mapRect(&dst);
441 return this->adjustAndMap(dst, op.paint);
442 }
443
bounds(const DrawTextBlob & op) const444 Bounds bounds(const DrawTextBlob& op) const {
445 SkRect dst = op.blob->bounds();
446 dst.offset(op.x, op.y);
447 return this->adjustAndMap(dst, &op.paint);
448 }
449
bounds(const DrawDrawable & op) const450 Bounds bounds(const DrawDrawable& op) const {
451 return this->adjustAndMap(op.worstCaseBounds, nullptr);
452 }
453
bounds(const DrawAnnotation & op) const454 Bounds bounds(const DrawAnnotation& op) const {
455 return this->adjustAndMap(op.rect, nullptr);
456 }
bounds(const DrawEdgeAAQuad & op) const457 Bounds bounds(const DrawEdgeAAQuad& op) const {
458 SkRect bounds = op.rect;
459 if (op.clip) {
460 bounds.setBounds(op.clip, 4);
461 }
462 return this->adjustAndMap(bounds, nullptr);
463 }
bounds(const DrawEdgeAAImageSet & op) const464 Bounds bounds(const DrawEdgeAAImageSet& op) const {
465 SkRect rect = SkRect::MakeEmpty();
466 int clipIndex = 0;
467 for (int i = 0; i < op.count; ++i) {
468 SkRect entryBounds = op.set[i].fDstRect;
469 if (op.set[i].fHasClip) {
470 entryBounds.setBounds(op.dstClips + clipIndex, 4);
471 clipIndex += 4;
472 }
473 if (op.set[i].fMatrixIndex >= 0) {
474 op.preViewMatrices[op.set[i].fMatrixIndex].mapRect(&entryBounds);
475 }
476 rect.join(this->adjustAndMap(entryBounds, nullptr));
477 }
478 return rect;
479 }
480
481 // Returns true if rect was meaningfully adjusted for the effects of paint,
482 // false if the paint could affect the rect in unknown ways.
AdjustForPaint(const SkPaint * paint,SkRect * rect)483 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
484 if (paint) {
485 if (paint->canComputeFastBounds()) {
486 *rect = paint->computeFastBounds(*rect, rect);
487 return true;
488 }
489 return false;
490 }
491 return true;
492 }
493
adjustForSaveLayerPaints(SkRect * rect,int savesToIgnore=0) const494 bool adjustForSaveLayerPaints(SkRect* rect, int savesToIgnore = 0) const {
495 for (int i = fSaveStack.count() - 1 - savesToIgnore; i >= 0; i--) {
496 SkMatrix inverse;
497 if (!fSaveStack[i].ctm.invert(&inverse)) {
498 return false;
499 }
500 inverse.mapRect(rect);
501 if (!AdjustForPaint(fSaveStack[i].paint, rect)) {
502 return false;
503 }
504 fSaveStack[i].ctm.mapRect(rect);
505 }
506 return true;
507 }
508
509 // We do not guarantee anything for operations outside of the cull rect
510 const SkRect fCullRect;
511
512 // Conservative identity-space bounds for each op in the SkRecord.
513 Bounds* fBounds;
514
515 // We walk fCurrentOp through the SkRecord,
516 // as we go using updateCTM() to maintain the exact CTM (fCTM).
517 int fCurrentOp;
518 SkMatrix fCTM;
519
520 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
521 SkTDArray<SaveBounds> fSaveStack;
522 SkTDArray<int> fControlIndices;
523 };
524
525 } // namespace SkRecords
526
SkRecordFillBounds(const SkRect & cullRect,const SkRecord & record,SkRect bounds[])527 void SkRecordFillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[]) {
528 {
529 SkRecords::FillBounds visitor(cullRect, record, bounds);
530 for (int i = 0; i < record.count(); i++) {
531 visitor.setCurrentOp(i);
532 record.visit(i, visitor);
533 }
534 }
535 }
536
537