blob: ac1e429f1227a575e27cb0342171842ac46a41b7 [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
commit-bot@chromium.org506db0b2014-04-08 23:31:35 +00008#include "SkRecordDraw.h"
mtklein131a22b2014-08-25 14:16:15 -07009#include "SkPatchUtils.h"
commit-bot@chromium.org506db0b2014-04-08 23:31:35 +000010
mtklein5ad6ee12014-08-11 08:08:43 -070011void SkRecordDraw(const SkRecord& record,
12 SkCanvas* canvas,
13 const SkBBoxHierarchy* bbh,
14 SkDrawPictureCallback* callback) {
Mike Kleinc11530e2014-06-24 11:29:06 -040015 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
mtklein5ad6ee12014-08-11 08:08:43 -070016
bsalomon49f085d2014-09-05 13:34:00 -070017 if (bbh) {
mtklein5ad6ee12014-08-11 08:08:43 -070018 // Draw only ops that affect pixels in the canvas's current clip.
mtklein3e8232b2014-08-18 13:39:11 -070019 // The SkRecord and BBH were recorded in identity space. This canvas
20 // is not necessarily in that same space. getClipBounds() returns us
21 // this canvas' clip bounds transformed back into identity space, which
22 // lets us query the BBH.
mtklein533eb782014-08-27 10:39:42 -070023 SkRect query = { 0, 0, 0, 0 };
24 (void)canvas->getClipBounds(&query);
mtklein3e8232b2014-08-18 13:39:11 -070025
mtklein5ad6ee12014-08-11 08:08:43 -070026 SkTDArray<void*> ops;
mtkleina723b572014-08-15 11:49:49 -070027 bbh->search(query, &ops);
mtklein5ad6ee12014-08-11 08:08:43 -070028
mtklein5ad6ee12014-08-11 08:08:43 -070029 SkRecords::Draw draw(canvas);
30 for (int i = 0; i < ops.count(); i++) {
bsalomon49f085d2014-09-05 13:34:00 -070031 if (callback && callback->abortDrawing()) {
mtklein5ad6ee12014-08-11 08:08:43 -070032 return;
33 }
34 record.visit<void>((uintptr_t)ops[i], draw); // See FillBounds below.
35 }
36 } else {
37 // Draw all ops.
mtklein00f30bd2014-09-02 12:03:31 -070038 SkRecords::Draw draw(canvas);
39 for (unsigned i = 0; i < record.count(); i++) {
bsalomon49f085d2014-09-05 13:34:00 -070040 if (callback && callback->abortDrawing()) {
mtklein5ad6ee12014-08-11 08:08:43 -070041 return;
42 }
mtklein00f30bd2014-09-02 12:03:31 -070043 record.visit<void>(i, draw);
mtklein5ad6ee12014-08-11 08:08:43 -070044 }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000045 }
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000046}
commit-bot@chromium.orgd9ce2be2014-04-09 23:30:28 +000047
mtklein00f30bd2014-09-02 12:03:31 -070048void SkRecordPartialDraw(const SkRecord& record,
49 SkCanvas* canvas,
50 const SkRect& clearRect,
51 unsigned start, unsigned stop) {
52 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
53
54 stop = SkTMin(stop, record.count());
55 SkRecords::PartialDraw draw(canvas, clearRect);
56 for (unsigned i = start; i < stop; i++) {
57 record.visit<void>(i, draw);
58 }
59}
60
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000061namespace SkRecords {
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000062
mtklein7cdc1ee2014-07-07 10:41:04 -070063// FIXME: SkBitmaps are stateful, so we need to copy them to play back in multiple threads.
64static SkBitmap shallow_copy(const SkBitmap& bitmap) {
65 return bitmap;
66}
67
commit-bot@chromium.org2e0c32a2014-04-28 16:19:45 +000068// NoOps draw nothing.
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000069template <> void Draw::draw(const NoOp&) {}
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000070
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000071#define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000072DRAW(Restore, restore());
Florin Malita5f6102d2014-06-30 10:13:28 -040073DRAW(Save, save());
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000074DRAW(SaveLayer, saveLayer(r.bounds, r.paint, r.flags));
75DRAW(PopCull, popCull());
commit-bot@chromium.org88c3e272014-04-22 16:57:20 +000076DRAW(PushCull, pushCull(r.rect));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000077DRAW(Clear, clear(r.color));
commit-bot@chromium.org99bd7d82014-05-19 15:51:12 +000078DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000079
80DRAW(ClipPath, clipPath(r.path, r.op, r.doAA));
81DRAW(ClipRRect, clipRRect(r.rrect, r.op, r.doAA));
82DRAW(ClipRect, clipRect(r.rect, r.op, r.doAA));
83DRAW(ClipRegion, clipRegion(r.region, r.op));
84
mtklein5f0e8222014-08-22 11:44:26 -070085DRAW(BeginCommentGroup, beginCommentGroup(r.description));
86DRAW(AddComment, addComment(r.key, r.value));
87DRAW(EndCommentGroup, endCommentGroup());
88
mtklein7cdc1ee2014-07-07 10:41:04 -070089DRAW(DrawBitmap, drawBitmap(shallow_copy(r.bitmap), r.left, r.top, r.paint));
90DRAW(DrawBitmapMatrix, drawBitmapMatrix(shallow_copy(r.bitmap), r.matrix, r.paint));
91DRAW(DrawBitmapNine, drawBitmapNine(shallow_copy(r.bitmap), r.center, r.dst, r.paint));
92DRAW(DrawBitmapRectToRect,
93 drawBitmapRectToRect(shallow_copy(r.bitmap), r.src, r.dst, r.paint, r.flags));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000094DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
95DRAW(DrawOval, drawOval(r.oval, r.paint));
96DRAW(DrawPaint, drawPaint(r.paint));
97DRAW(DrawPath, drawPath(r.path, r.paint));
dandovb3c9d1c2014-08-12 08:34:29 -070098DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode.get(), r.paint));
reedd5fa1a42014-08-09 11:08:05 -070099DRAW(DrawPicture, drawPicture(r.picture, r.matrix, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000100DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
101DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
102DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
103DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
104DRAW(DrawRect, drawRect(r.rect, r.paint));
mtklein7cdc1ee2014-07-07 10:41:04 -0700105DRAW(DrawSprite, drawSprite(shallow_copy(r.bitmap), r.left, r.top, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000106DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
fmalita00d5c2c2014-08-21 08:53:26 -0700107DRAW(DrawTextBlob, drawTextBlob(r.blob, r.x, r.y, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000108DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, r.matrix, r.paint));
109DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
110 r.xmode.get(), r.indices, r.indexCount, r.paint));
mtklein29dfaa82014-09-04 14:12:44 -0700111DRAW(DrawData, drawData(r.data, r.length));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000112#undef DRAW
113
mtklein5ad6ee12014-08-11 08:08:43 -0700114
115// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -0700116//
117// The interesting part here is how to calculate bounds for ops which don't
118// have intrinsic bounds. What is the bounds of a Save or a Translate?
119//
120// We answer this by thinking about a particular definition of bounds: if I
121// don't execute this op, pixels in this rectangle might draw incorrectly. So
122// the bounds of a Save, a Translate, a Restore, etc. are the union of the
123// bounds of Draw* ops that they might have an effect on. For any given
124// Save/Restore block, the bounds of the Save, the Restore, and any other
125// non-drawing ("control") ops inside are exactly the union of the bounds of
126// the drawing ops inside that block.
127//
128// To implement this, we keep a stack of active Save blocks. As we consume ops
129// inside the Save/Restore block, drawing ops are unioned with the bounds of
130// the block, and control ops are stashed away for later. When we finish the
131// block with a Restore, our bounds are complete, and we go back and fill them
132// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700133class FillBounds : SkNoncopyable {
134public:
mtklein828ce1f2014-08-13 12:58:45 -0700135 FillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) : fBounds(record.count()) {
136 // Calculate bounds for all ops. This won't go quite in order, so we'll need
137 // to store the bounds separately then feed them in to the BBH later in order.
mtklein533eb782014-08-27 10:39:42 -0700138 const Bounds largest = Bounds::MakeLargest();
mtklein6332f1d2014-08-19 07:09:40 -0700139 fCTM = &SkMatrix::I();
mtkleina723b572014-08-15 11:49:49 -0700140 fCurrentClipBounds = largest;
mtklein828ce1f2014-08-13 12:58:45 -0700141 for (fCurrentOp = 0; fCurrentOp < record.count(); fCurrentOp++) {
142 record.visit<void>(fCurrentOp, *this);
143 }
mtklein5ad6ee12014-08-11 08:08:43 -0700144
mtklein828ce1f2014-08-13 12:58:45 -0700145 // If we have any lingering unpaired Saves, simulate restores to make
146 // sure all ops in those Save blocks have their bounds calculated.
147 while (!fSaveStack.isEmpty()) {
148 this->popSaveBlock();
149 }
150
151 // Any control ops not part of any Save/Restore block draw everywhere.
152 while (!fControlIndices.isEmpty()) {
mtkleina723b572014-08-15 11:49:49 -0700153 this->popControl(largest);
mtklein828ce1f2014-08-13 12:58:45 -0700154 }
155
156 // Finally feed all stored bounds into the BBH. They'll be returned in this order.
bsalomon49f085d2014-09-05 13:34:00 -0700157 SkASSERT(bbh);
mtklein828ce1f2014-08-13 12:58:45 -0700158 for (uintptr_t i = 0; i < record.count(); i++) {
159 if (!fBounds[i].isEmpty()) {
160 bbh->insert((void*)i, fBounds[i], true/*ok to defer*/);
161 }
162 }
163 bbh->flushDeferredInserts();
164 }
mtklein5ad6ee12014-08-11 08:08:43 -0700165
mtkleina723b572014-08-15 11:49:49 -0700166 template <typename T> void operator()(const T& op) {
167 this->updateCTM(op);
168 this->updateClipBounds(op);
169 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700170 }
171
172private:
mtklein533eb782014-08-27 10:39:42 -0700173 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
174 typedef SkRect Bounds;
175
mtklein828ce1f2014-08-13 12:58:45 -0700176 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700177 int controlOps; // Number of control ops in this Save block, including the Save.
mtklein533eb782014-08-27 10:39:42 -0700178 Bounds bounds; // Bounds of everything in the block.
mtkleina723b572014-08-15 11:49:49 -0700179 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
mtklein828ce1f2014-08-13 12:58:45 -0700180 };
181
mtklein6cfa73a2014-08-13 13:33:49 -0700182 template <typename T> void updateCTM(const T&) { /* most ops don't change the CTM */ }
mtklein6332f1d2014-08-19 07:09:40 -0700183 void updateCTM(const Restore& op) { fCTM = &op.matrix; }
184 void updateCTM(const SetMatrix& op) { fCTM = &op.matrix; }
mtkleina723b572014-08-15 11:49:49 -0700185
186 template <typename T> void updateClipBounds(const T&) { /* most ops don't change the clip */ }
187 // Each of these devBounds fields is the state of the device bounds after the op.
188 // So Restore's devBounds are those bounds saved by its paired Save or SaveLayer.
mtklein533eb782014-08-27 10:39:42 -0700189 void updateClipBounds(const Restore& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
190 void updateClipBounds(const ClipPath& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
191 void updateClipBounds(const ClipRRect& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
192 void updateClipBounds(const ClipRect& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
193 void updateClipBounds(const ClipRegion& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
mtkleina723b572014-08-15 11:49:49 -0700194 void updateClipBounds(const SaveLayer& op) {
195 if (op.bounds) {
196 fCurrentClipBounds.intersect(this->adjustAndMap(*op.bounds, op.paint));
197 }
198 }
mtklein6cfa73a2014-08-13 13:33:49 -0700199
mtklein828ce1f2014-08-13 12:58:45 -0700200 // The bounds of these ops must be calculated when we hit the Restore
201 // from the bounds of the ops in the same Save block.
mtkleina723b572014-08-15 11:49:49 -0700202 void trackBounds(const Save&) { this->pushSaveBlock(NULL); }
mtkleina723b572014-08-15 11:49:49 -0700203 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
204 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700205
mtklein68199a22014-08-25 13:49:29 -0700206 void trackBounds(const SetMatrix&) { this->pushControl(); }
207 void trackBounds(const ClipRect&) { this->pushControl(); }
208 void trackBounds(const ClipRRect&) { this->pushControl(); }
209 void trackBounds(const ClipPath&) { this->pushControl(); }
210 void trackBounds(const ClipRegion&) { this->pushControl(); }
211 void trackBounds(const PushCull&) { this->pushControl(); }
212 void trackBounds(const PopCull&) { this->pushControl(); }
213 void trackBounds(const BeginCommentGroup&) { this->pushControl(); }
214 void trackBounds(const AddComment&) { this->pushControl(); }
215 void trackBounds(const EndCommentGroup&) { this->pushControl(); }
mtklein29dfaa82014-09-04 14:12:44 -0700216 void trackBounds(const DrawData&) { this->pushControl(); }
mtklein828ce1f2014-08-13 12:58:45 -0700217
218 // For all other ops, we can calculate and store the bounds directly now.
219 template <typename T> void trackBounds(const T& op) {
220 fBounds[fCurrentOp] = this->bounds(op);
221 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700222 }
223
mtkleina723b572014-08-15 11:49:49 -0700224 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700225 // Starting a new Save block. Push a new entry to represent that.
mtklein533eb782014-08-27 10:39:42 -0700226 SaveBounds sb = { 0, Bounds::MakeEmpty(), paint };
mtklein828ce1f2014-08-13 12:58:45 -0700227 fSaveStack.push(sb);
228 this->pushControl();
229 }
230
mtkleind910f542014-08-22 09:06:34 -0700231 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
232 // FIXME: this is very conservative
233 return paint && (paint->getImageFilter() || paint->getColorFilter());
234 }
235
mtklein533eb782014-08-27 10:39:42 -0700236 Bounds popSaveBlock() {
mtklein828ce1f2014-08-13 12:58:45 -0700237 // We're done the Save block. Apply the block's bounds to all control ops inside it.
238 SaveBounds sb;
239 fSaveStack.pop(&sb);
mtkleind910f542014-08-22 09:06:34 -0700240
241 // If the paint affects transparent black, we can't trust any of our calculated bounds.
mtklein533eb782014-08-27 10:39:42 -0700242 const Bounds& bounds =
mtkleind910f542014-08-22 09:06:34 -0700243 PaintMayAffectTransparentBlack(sb.paint) ? fCurrentClipBounds : sb.bounds;
244
mtklein828ce1f2014-08-13 12:58:45 -0700245 while (sb.controlOps --> 0) {
mtkleind910f542014-08-22 09:06:34 -0700246 this->popControl(bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700247 }
248
249 // This whole Save block may be part another Save block.
mtkleind910f542014-08-22 09:06:34 -0700250 this->updateSaveBounds(bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700251
252 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
mtkleind910f542014-08-22 09:06:34 -0700253 return bounds;
mtklein828ce1f2014-08-13 12:58:45 -0700254 }
255
256 void pushControl() {
257 fControlIndices.push(fCurrentOp);
258 if (!fSaveStack.isEmpty()) {
259 fSaveStack.top().controlOps++;
260 }
261 }
262
mtklein533eb782014-08-27 10:39:42 -0700263 void popControl(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700264 fBounds[fControlIndices.top()] = bounds;
265 fControlIndices.pop();
266 }
267
mtklein533eb782014-08-27 10:39:42 -0700268 void updateSaveBounds(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700269 // If we're in a Save block, expand its bounds to cover these bounds too.
270 if (!fSaveStack.isEmpty()) {
271 fSaveStack.top().bounds.join(bounds);
272 }
273 }
274
mtklein131a22b2014-08-25 14:16:15 -0700275 // FIXME: this method could use better bounds
mtklein533eb782014-08-27 10:39:42 -0700276 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; }
mtklein68199a22014-08-25 13:49:29 -0700277
mtklein533eb782014-08-27 10:39:42 -0700278 Bounds bounds(const Clear&) const { return Bounds::MakeLargest(); } // Ignores the clip.
279 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; }
280 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700281
mtklein533eb782014-08-27 10:39:42 -0700282 Bounds bounds(const DrawSprite& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700283 const SkBitmap& bm = op.bitmap;
mtklein533eb782014-08-27 10:39:42 -0700284 return Bounds::MakeXYWH(op.left, op.top, bm.width(), bm.height()); // Ignores the matrix.
mtklein131a22b2014-08-25 14:16:15 -0700285 }
286
mtklein533eb782014-08-27 10:39:42 -0700287 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
288 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
289 Bounds bounds(const DrawRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700290 return this->adjustAndMap(op.rrect.rect(), &op.paint);
291 }
mtklein533eb782014-08-27 10:39:42 -0700292 Bounds bounds(const DrawDRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700293 return this->adjustAndMap(op.outer.rect(), &op.paint);
294 }
295
mtklein533eb782014-08-27 10:39:42 -0700296 Bounds bounds(const DrawBitmapRectToRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700297 return this->adjustAndMap(op.dst, op.paint);
298 }
mtklein533eb782014-08-27 10:39:42 -0700299 Bounds bounds(const DrawBitmapNine& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700300 return this->adjustAndMap(op.dst, op.paint);
301 }
mtklein533eb782014-08-27 10:39:42 -0700302 Bounds bounds(const DrawBitmap& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700303 const SkBitmap& bm = op.bitmap;
304 return this->adjustAndMap(SkRect::MakeXYWH(op.left, op.top, bm.width(), bm.height()),
305 op.paint);
306 }
mtklein533eb782014-08-27 10:39:42 -0700307 Bounds bounds(const DrawBitmapMatrix& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700308 const SkBitmap& bm = op.bitmap;
309 SkRect dst = SkRect::MakeWH(bm.width(), bm.height());
310 op.matrix.mapRect(&dst);
311 return this->adjustAndMap(dst, op.paint);
312 }
313
mtklein533eb782014-08-27 10:39:42 -0700314 Bounds bounds(const DrawPath& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700315 return op.path.isInverseFillType() ? fCurrentClipBounds
316 : this->adjustAndMap(op.path.getBounds(), &op.paint);
317 }
mtklein533eb782014-08-27 10:39:42 -0700318 Bounds bounds(const DrawPoints& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700319 SkRect dst;
320 dst.set(op.pts, op.count);
321
322 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
323 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
324 dst.outset(stroke/2, stroke/2);
325
326 return this->adjustAndMap(dst, &op.paint);
327 }
mtklein533eb782014-08-27 10:39:42 -0700328 Bounds bounds(const DrawPatch& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700329 SkRect dst;
330 dst.set(op.cubics, SkPatchUtils::kNumCtrlPts);
331 return this->adjustAndMap(dst, &op.paint);
332 }
mtklein533eb782014-08-27 10:39:42 -0700333 Bounds bounds(const DrawVertices& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700334 SkRect dst;
335 dst.set(op.vertices, op.vertexCount);
336 return this->adjustAndMap(dst, &op.paint);
337 }
338
mtklein533eb782014-08-27 10:39:42 -0700339 Bounds bounds(const DrawPicture& op) const {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700340 SkRect dst = op.picture->cullRect();
mtklein131a22b2014-08-25 14:16:15 -0700341 if (op.matrix) {
342 op.matrix->mapRect(&dst);
343 }
344 return this->adjustAndMap(dst, op.paint);
345 }
mtklein62b67ae2014-08-18 11:10:37 -0700346
mtklein533eb782014-08-27 10:39:42 -0700347 Bounds bounds(const DrawPosText& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700348 const int N = op.paint.countText(op.text, op.byteLength);
349 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700350 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700351 }
352
353 SkRect dst;
mtklein937c9c72014-09-02 15:19:48 -0700354 dst.set(op.pos, N);
mtklein62b67ae2014-08-18 11:10:37 -0700355 AdjustTextForFontMetrics(&dst, op.paint);
356 return this->adjustAndMap(dst, &op.paint);
357 }
mtklein533eb782014-08-27 10:39:42 -0700358 Bounds bounds(const DrawPosTextH& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700359 const int N = op.paint.countText(op.text, op.byteLength);
360 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700361 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700362 }
363
364 SkScalar left = op.xpos[0], right = op.xpos[0];
365 for (int i = 1; i < N; i++) {
366 left = SkMinScalar(left, op.xpos[i]);
367 right = SkMaxScalar(right, op.xpos[i]);
368 }
369 SkRect dst = { left, op.y, right, op.y };
370 AdjustTextForFontMetrics(&dst, op.paint);
371 return this->adjustAndMap(dst, &op.paint);
372 }
mtklein533eb782014-08-27 10:39:42 -0700373 Bounds bounds(const DrawTextOnPath& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700374 SkRect dst = op.path.getBounds();
375
376 // Pad all sides by the maximum padding in any direction we'd normally apply.
377 SkRect pad = { 0, 0, 0, 0};
378 AdjustTextForFontMetrics(&pad, op.paint);
379
380 // That maximum padding happens to always be the right pad today.
381 SkASSERT(pad.fLeft == -pad.fRight);
382 SkASSERT(pad.fTop == -pad.fBottom);
383 SkASSERT(pad.fRight > pad.fBottom);
384 dst.outset(pad.fRight, pad.fRight);
385
386 return this->adjustAndMap(dst, &op.paint);
387 }
388
mtklein533eb782014-08-27 10:39:42 -0700389 Bounds bounds(const DrawTextBlob& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700390 SkRect dst = op.blob->bounds();
391 dst.offset(op.x, op.y);
392 // TODO: remove when implicit bounds are plumbed through
393 if (dst.isEmpty()) {
394 return fCurrentClipBounds;
395 }
396 return this->adjustAndMap(dst, &op.paint);
397 }
mtklein62b67ae2014-08-18 11:10:37 -0700398
399 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
caryclark9a657fa2014-08-20 05:24:29 -0700400#ifdef SK_DEBUG
mtkleina19afb42014-08-19 17:47:14 -0700401 SkRect correct = *rect;
402#endif
mtkleinc8460492014-08-21 16:39:12 -0700403 const SkScalar yPad = 2.0f * paint.getTextSize(), // In practice, this seems to be enough.
mtkleina19afb42014-08-19 17:47:14 -0700404 xPad = 4.0f * yPad; // Hack for very wide Github logo font.
405 rect->outset(xPad, yPad);
caryclark9a657fa2014-08-20 05:24:29 -0700406#ifdef SK_DEBUG
mtklein62b67ae2014-08-18 11:10:37 -0700407 SkPaint::FontMetrics metrics;
408 paint.getFontMetrics(&metrics);
mtkleina19afb42014-08-19 17:47:14 -0700409 correct.fLeft += metrics.fXMin;
410 correct.fTop += metrics.fTop;
411 correct.fRight += metrics.fXMax;
412 correct.fBottom += metrics.fBottom;
mtkleind13291a2014-08-21 14:46:49 -0700413 // See skia:2862 for why we ignore small text sizes.
414 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
415 "%f %f %f %f vs. %f %f %f %f\n",
mtkleina19afb42014-08-19 17:47:14 -0700416 -xPad, -yPad, +xPad, +yPad,
417 metrics.fXMin, metrics.fTop, metrics.fXMax, metrics.fBottom);
418#endif
mtklein62b67ae2014-08-18 11:10:37 -0700419 }
420
mtklein479601b2014-08-18 08:45:33 -0700421 // Returns true if rect was meaningfully adjusted for the effects of paint,
422 // false if the paint could affect the rect in unknown ways.
423 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700424 if (paint) {
425 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700426 *rect = paint->computeFastBounds(*rect, rect);
427 return true;
mtkleina723b572014-08-15 11:49:49 -0700428 }
mtklein479601b2014-08-18 08:45:33 -0700429 return false;
430 }
431 return true;
432 }
433
mtklein533eb782014-08-27 10:39:42 -0700434 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
435 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
mtklein479601b2014-08-18 08:45:33 -0700436 // Inverted rectangles really confuse our BBHs.
437 rect.sort();
438
439 // Adjust the rect for its own paint.
440 if (!AdjustForPaint(paint, &rect)) {
441 // The paint could do anything to our bounds. The only safe answer is the current clip.
442 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700443 }
444
445 // Adjust rect for all the paints from the SaveLayers we're inside.
mtkleina723b572014-08-15 11:49:49 -0700446 for (int i = fSaveStack.count() - 1; i >= 0; i--) {
mtklein479601b2014-08-18 08:45:33 -0700447 if (!AdjustForPaint(fSaveStack[i].paint, &rect)) {
448 // Same deal as above.
449 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700450 }
451 }
452
mtklein533eb782014-08-27 10:39:42 -0700453 // Map the rect back to identity space.
mtklein6332f1d2014-08-19 07:09:40 -0700454 fCTM->mapRect(&rect);
mtklein479601b2014-08-18 08:45:33 -0700455
456 // Nothing can draw outside the current clip.
457 // (Only bounded ops call into this method, so oddballs like Clear don't matter here.)
mtklein533eb782014-08-27 10:39:42 -0700458 rect.intersect(fCurrentClipBounds);
459 return rect;
mtkleina723b572014-08-15 11:49:49 -0700460 }
461
mtklein533eb782014-08-27 10:39:42 -0700462 // Conservative identity-space bounds for each op in the SkRecord.
463 SkAutoTMalloc<Bounds> fBounds;
mtkleina723b572014-08-15 11:49:49 -0700464
465 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
466 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
mtklein533eb782014-08-27 10:39:42 -0700467 // identity-space bounds of the current clip (fCurrentClipBounds).
mtklein828ce1f2014-08-13 12:58:45 -0700468 unsigned fCurrentOp;
mtklein6332f1d2014-08-19 07:09:40 -0700469 const SkMatrix* fCTM;
mtklein533eb782014-08-27 10:39:42 -0700470 Bounds fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700471
472 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700473 SkTDArray<SaveBounds> fSaveStack;
474 SkTDArray<unsigned> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700475};
476
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000477} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700478
479void SkRecordFillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) {
mtklein828ce1f2014-08-13 12:58:45 -0700480 SkRecords::FillBounds(record, bbh);
mtklein5ad6ee12014-08-11 08:08:43 -0700481}