blob: bc5e7eb63feef19b231e4834f6c5a0ef3a8a1949 [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"
mtklein5ad6ee12014-08-11 08:08:43 -07009#include "SkTSort.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
17 if (NULL != bbh) {
mtklein5ad6ee12014-08-11 08:08:43 -070018 // Draw only ops that affect pixels in the canvas's current clip.
mtkleina723b572014-08-15 11:49:49 -070019 SkIRect query;
20#if 1 // TODO: Why is this the right way to make the query? I'd think it'd be the else branch.
21 SkRect clipBounds;
22 canvas->getClipBounds(&clipBounds);
23 clipBounds.roundOut(&query);
24#else
25 canvas->getClipDeviceBounds(&query);
26#endif
mtklein5ad6ee12014-08-11 08:08:43 -070027 SkTDArray<void*> ops;
mtkleina723b572014-08-15 11:49:49 -070028 bbh->search(query, &ops);
mtklein5ad6ee12014-08-11 08:08:43 -070029
mtklein5ad6ee12014-08-11 08:08:43 -070030 SkRecords::Draw draw(canvas);
31 for (int i = 0; i < ops.count(); i++) {
32 if (NULL != callback && callback->abortDrawing()) {
33 return;
34 }
35 record.visit<void>((uintptr_t)ops[i], draw); // See FillBounds below.
36 }
37 } else {
38 // Draw all ops.
39 for (SkRecords::Draw draw(canvas); draw.index() < record.count(); draw.next()) {
40 if (NULL != callback && callback->abortDrawing()) {
41 return;
42 }
43 record.visit<void>(draw.index(), draw);
44 }
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
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000048namespace SkRecords {
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000049
mtklein7cdc1ee2014-07-07 10:41:04 -070050// FIXME: SkBitmaps are stateful, so we need to copy them to play back in multiple threads.
51static SkBitmap shallow_copy(const SkBitmap& bitmap) {
52 return bitmap;
53}
54
commit-bot@chromium.org2e0c32a2014-04-28 16:19:45 +000055// NoOps draw nothing.
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000056template <> void Draw::draw(const NoOp&) {}
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000057
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000058#define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000059DRAW(Restore, restore());
Florin Malita5f6102d2014-06-30 10:13:28 -040060DRAW(Save, save());
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000061DRAW(SaveLayer, saveLayer(r.bounds, r.paint, r.flags));
62DRAW(PopCull, popCull());
commit-bot@chromium.org88c3e272014-04-22 16:57:20 +000063DRAW(PushCull, pushCull(r.rect));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000064DRAW(Clear, clear(r.color));
65DRAW(Concat, concat(r.matrix));
commit-bot@chromium.org99bd7d82014-05-19 15:51:12 +000066DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000067
68DRAW(ClipPath, clipPath(r.path, r.op, r.doAA));
69DRAW(ClipRRect, clipRRect(r.rrect, r.op, r.doAA));
70DRAW(ClipRect, clipRect(r.rect, r.op, r.doAA));
71DRAW(ClipRegion, clipRegion(r.region, r.op));
72
mtklein7cdc1ee2014-07-07 10:41:04 -070073DRAW(DrawBitmap, drawBitmap(shallow_copy(r.bitmap), r.left, r.top, r.paint));
74DRAW(DrawBitmapMatrix, drawBitmapMatrix(shallow_copy(r.bitmap), r.matrix, r.paint));
75DRAW(DrawBitmapNine, drawBitmapNine(shallow_copy(r.bitmap), r.center, r.dst, r.paint));
76DRAW(DrawBitmapRectToRect,
77 drawBitmapRectToRect(shallow_copy(r.bitmap), r.src, r.dst, r.paint, r.flags));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000078DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
79DRAW(DrawOval, drawOval(r.oval, r.paint));
80DRAW(DrawPaint, drawPaint(r.paint));
81DRAW(DrawPath, drawPath(r.path, r.paint));
dandovb3c9d1c2014-08-12 08:34:29 -070082DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode.get(), r.paint));
reedd5fa1a42014-08-09 11:08:05 -070083DRAW(DrawPicture, drawPicture(r.picture, r.matrix, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000084DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
85DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
86DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
87DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
88DRAW(DrawRect, drawRect(r.rect, r.paint));
mtklein7cdc1ee2014-07-07 10:41:04 -070089DRAW(DrawSprite, drawSprite(shallow_copy(r.bitmap), r.left, r.top, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000090DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
91DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, r.matrix, r.paint));
92DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
93 r.xmode.get(), r.indices, r.indexCount, r.paint));
94#undef DRAW
95
mtklein5ad6ee12014-08-11 08:08:43 -070096
97// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -070098//
99// The interesting part here is how to calculate bounds for ops which don't
100// have intrinsic bounds. What is the bounds of a Save or a Translate?
101//
102// We answer this by thinking about a particular definition of bounds: if I
103// don't execute this op, pixels in this rectangle might draw incorrectly. So
104// the bounds of a Save, a Translate, a Restore, etc. are the union of the
105// bounds of Draw* ops that they might have an effect on. For any given
106// Save/Restore block, the bounds of the Save, the Restore, and any other
107// non-drawing ("control") ops inside are exactly the union of the bounds of
108// the drawing ops inside that block.
109//
110// To implement this, we keep a stack of active Save blocks. As we consume ops
111// inside the Save/Restore block, drawing ops are unioned with the bounds of
112// the block, and control ops are stashed away for later. When we finish the
113// block with a Restore, our bounds are complete, and we go back and fill them
114// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700115class FillBounds : SkNoncopyable {
116public:
mtklein828ce1f2014-08-13 12:58:45 -0700117 FillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) : fBounds(record.count()) {
118 // Calculate bounds for all ops. This won't go quite in order, so we'll need
119 // to store the bounds separately then feed them in to the BBH later in order.
mtkleina723b572014-08-15 11:49:49 -0700120 const SkIRect largest = SkIRect::MakeLargest();
mtklein6cfa73a2014-08-13 13:33:49 -0700121 fCTM.setIdentity();
mtkleina723b572014-08-15 11:49:49 -0700122 fCurrentClipBounds = largest;
mtklein828ce1f2014-08-13 12:58:45 -0700123 for (fCurrentOp = 0; fCurrentOp < record.count(); fCurrentOp++) {
124 record.visit<void>(fCurrentOp, *this);
125 }
mtklein5ad6ee12014-08-11 08:08:43 -0700126
mtklein828ce1f2014-08-13 12:58:45 -0700127 // If we have any lingering unpaired Saves, simulate restores to make
128 // sure all ops in those Save blocks have their bounds calculated.
129 while (!fSaveStack.isEmpty()) {
130 this->popSaveBlock();
131 }
132
133 // Any control ops not part of any Save/Restore block draw everywhere.
134 while (!fControlIndices.isEmpty()) {
mtkleina723b572014-08-15 11:49:49 -0700135 this->popControl(largest);
mtklein828ce1f2014-08-13 12:58:45 -0700136 }
137
138 // Finally feed all stored bounds into the BBH. They'll be returned in this order.
139 SkASSERT(NULL != bbh);
140 for (uintptr_t i = 0; i < record.count(); i++) {
141 if (!fBounds[i].isEmpty()) {
142 bbh->insert((void*)i, fBounds[i], true/*ok to defer*/);
143 }
144 }
145 bbh->flushDeferredInserts();
146 }
mtklein5ad6ee12014-08-11 08:08:43 -0700147
mtkleina723b572014-08-15 11:49:49 -0700148 template <typename T> void operator()(const T& op) {
149 this->updateCTM(op);
150 this->updateClipBounds(op);
151 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700152 }
153
154private:
mtklein828ce1f2014-08-13 12:58:45 -0700155 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700156 int controlOps; // Number of control ops in this Save block, including the Save.
157 SkIRect bounds; // Bounds of everything in the block.
158 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
mtklein828ce1f2014-08-13 12:58:45 -0700159 };
160
mtklein6cfa73a2014-08-13 13:33:49 -0700161 template <typename T> void updateCTM(const T&) { /* most ops don't change the CTM */ }
mtkleina723b572014-08-15 11:49:49 -0700162 void updateCTM(const Restore& op) { fCTM = op.matrix; }
163 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
164 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
165
166 template <typename T> void updateClipBounds(const T&) { /* most ops don't change the clip */ }
167 // Each of these devBounds fields is the state of the device bounds after the op.
168 // So Restore's devBounds are those bounds saved by its paired Save or SaveLayer.
169 void updateClipBounds(const Restore& op) { fCurrentClipBounds = op.devBounds; }
170 void updateClipBounds(const ClipPath& op) { fCurrentClipBounds = op.devBounds; }
171 void updateClipBounds(const ClipRRect& op) { fCurrentClipBounds = op.devBounds; }
172 void updateClipBounds(const ClipRect& op) { fCurrentClipBounds = op.devBounds; }
173 void updateClipBounds(const ClipRegion& op) { fCurrentClipBounds = op.devBounds; }
174 void updateClipBounds(const SaveLayer& op) {
175 if (op.bounds) {
176 fCurrentClipBounds.intersect(this->adjustAndMap(*op.bounds, op.paint));
177 }
178 }
mtklein6cfa73a2014-08-13 13:33:49 -0700179
mtklein828ce1f2014-08-13 12:58:45 -0700180 // The bounds of these ops must be calculated when we hit the Restore
181 // from the bounds of the ops in the same Save block.
mtkleina723b572014-08-15 11:49:49 -0700182 void trackBounds(const Save&) { this->pushSaveBlock(NULL); }
mtklein828ce1f2014-08-13 12:58:45 -0700183 // TODO: bounds of SaveLayer may be more complicated?
mtkleina723b572014-08-15 11:49:49 -0700184 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
185 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700186
187 void trackBounds(const Concat&) { this->pushControl(); }
188 void trackBounds(const SetMatrix&) { this->pushControl(); }
189 void trackBounds(const ClipRect&) { this->pushControl(); }
190 void trackBounds(const ClipRRect&) { this->pushControl(); }
191 void trackBounds(const ClipPath&) { this->pushControl(); }
192 void trackBounds(const ClipRegion&) { this->pushControl(); }
193
194 // For all other ops, we can calculate and store the bounds directly now.
195 template <typename T> void trackBounds(const T& op) {
196 fBounds[fCurrentOp] = this->bounds(op);
197 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700198 }
199
mtkleina723b572014-08-15 11:49:49 -0700200 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700201 // Starting a new Save block. Push a new entry to represent that.
mtkleina723b572014-08-15 11:49:49 -0700202 SaveBounds sb = { 0, SkIRect::MakeEmpty(), paint };
mtklein828ce1f2014-08-13 12:58:45 -0700203 fSaveStack.push(sb);
204 this->pushControl();
205 }
206
207 SkIRect popSaveBlock() {
208 // We're done the Save block. Apply the block's bounds to all control ops inside it.
209 SaveBounds sb;
210 fSaveStack.pop(&sb);
211 while (sb.controlOps --> 0) {
212 this->popControl(sb.bounds);
213 }
214
215 // This whole Save block may be part another Save block.
216 this->updateSaveBounds(sb.bounds);
217
218 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
219 return sb.bounds;
220 }
221
222 void pushControl() {
223 fControlIndices.push(fCurrentOp);
224 if (!fSaveStack.isEmpty()) {
225 fSaveStack.top().controlOps++;
226 }
227 }
228
229 void popControl(const SkIRect& bounds) {
230 fBounds[fControlIndices.top()] = bounds;
231 fControlIndices.pop();
232 }
233
234 void updateSaveBounds(const SkIRect& bounds) {
235 // If we're in a Save block, expand its bounds to cover these bounds too.
236 if (!fSaveStack.isEmpty()) {
237 fSaveStack.top().bounds.join(bounds);
238 }
239 }
240
mtklein62b67ae2014-08-18 11:10:37 -0700241 // TODO(mtklein): Remove this default when done bounding all ops.
mtklein479601b2014-08-18 08:45:33 -0700242 template <typename T> SkIRect bounds(const T&) const { return fCurrentClipBounds; }
243 SkIRect bounds(const Clear&) const { return SkIRect::MakeLargest(); } // Ignores the clip
244 SkIRect bounds(const NoOp&) const { return SkIRect::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700245
mtklein62b67ae2014-08-18 11:10:37 -0700246 SkIRect bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
247 SkIRect bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
248 SkIRect bounds(const DrawRRect& op) const {
249 return this->adjustAndMap(op.rrect.rect(), &op.paint);
250 }
251 SkIRect bounds(const DrawDRRect& op) const {
252 return this->adjustAndMap(op.outer.rect(), &op.paint);
253 }
254
255 SkIRect bounds(const DrawBitmapRectToRect& op) const {
256 return this->adjustAndMap(op.dst, op.paint);
257 }
258 SkIRect bounds(const DrawBitmapNine& op) const {
259 return this->adjustAndMap(op.dst, op.paint);
260 }
261 SkIRect bounds(const DrawBitmap& op) const {
262 const SkBitmap& bm = op.bitmap;
263 return this->adjustAndMap(SkRect::MakeXYWH(op.left, op.top, bm.width(), bm.height()),
264 op.paint);
265 }
266 SkIRect bounds(const DrawBitmapMatrix& op) const {
267 const SkBitmap& bm = op.bitmap;
268 SkRect dst = SkRect::MakeWH(bm.width(), bm.height());
269 op.matrix.mapRect(&dst);
270 return this->adjustAndMap(dst, op.paint);
271 }
272
273 SkIRect bounds(const DrawPath& op) const {
274 return op.path.isInverseFillType() ? fCurrentClipBounds
275 : this->adjustAndMap(op.path.getBounds(), &op.paint);
276 }
277 SkIRect bounds(const DrawPoints& op) const {
278 SkRect dst;
279 dst.set(op.pts, op.count);
280
281 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
282 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
283 dst.outset(stroke/2, stroke/2);
284
285 return this->adjustAndMap(dst, &op.paint);
286 }
287
288 SkIRect bounds(const DrawPosText& op) const {
289 const int N = op.paint.countText(op.text, op.byteLength);
290 if (N == 0) {
291 return SkIRect::MakeEmpty();
292 }
293
294 SkRect dst;
295 dst.set(op.pos, op.paint.countText(op.text, N));
296 AdjustTextForFontMetrics(&dst, op.paint);
297 return this->adjustAndMap(dst, &op.paint);
298 }
299 SkIRect bounds(const DrawPosTextH& op) const {
300 const int N = op.paint.countText(op.text, op.byteLength);
301 if (N == 0) {
302 return SkIRect::MakeEmpty();
303 }
304
305 SkScalar left = op.xpos[0], right = op.xpos[0];
306 for (int i = 1; i < N; i++) {
307 left = SkMinScalar(left, op.xpos[i]);
308 right = SkMaxScalar(right, op.xpos[i]);
309 }
310 SkRect dst = { left, op.y, right, op.y };
311 AdjustTextForFontMetrics(&dst, op.paint);
312 return this->adjustAndMap(dst, &op.paint);
313 }
314
315 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
316 // FIXME: These bounds should be tight (and correct), but reading SkFontMetrics is likely
317 // a performance bottleneck. It's safe to overapproximate these metrics for speed. E.g.
318 // fTop <= 1.5 * paint.getTextSize(), fXMax <= 8 * fTop, etc.
319 SkPaint::FontMetrics metrics;
320 paint.getFontMetrics(&metrics);
321 rect->fLeft += metrics.fXMin;
322 rect->fTop += metrics.fTop;
323 rect->fRight += metrics.fXMax;
324 rect->fBottom += metrics.fBottom;
325 }
326
mtklein479601b2014-08-18 08:45:33 -0700327 // Returns true if rect was meaningfully adjusted for the effects of paint,
328 // false if the paint could affect the rect in unknown ways.
329 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700330 if (paint) {
331 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700332 *rect = paint->computeFastBounds(*rect, rect);
333 return true;
mtkleina723b572014-08-15 11:49:49 -0700334 }
mtklein479601b2014-08-18 08:45:33 -0700335 return false;
336 }
337 return true;
338 }
339
340 // Adjust rect for all paints that may affect its geometry, then map it to device space.
341 SkIRect adjustAndMap(SkRect rect, const SkPaint* paint) const {
342 // Inverted rectangles really confuse our BBHs.
343 rect.sort();
344
345 // Adjust the rect for its own paint.
346 if (!AdjustForPaint(paint, &rect)) {
347 // The paint could do anything to our bounds. The only safe answer is the current clip.
348 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700349 }
350
351 // Adjust rect for all the paints from the SaveLayers we're inside.
mtkleina723b572014-08-15 11:49:49 -0700352 for (int i = fSaveStack.count() - 1; i >= 0; i--) {
mtklein479601b2014-08-18 08:45:33 -0700353 if (!AdjustForPaint(fSaveStack[i].paint, &rect)) {
354 // Same deal as above.
355 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700356 }
357 }
358
359 // Map the rect back to device space.
360 fCTM.mapRect(&rect);
361 SkIRect devRect;
362 rect.roundOut(&devRect);
mtklein479601b2014-08-18 08:45:33 -0700363
364 // Nothing can draw outside the current clip.
365 // (Only bounded ops call into this method, so oddballs like Clear don't matter here.)
366 devRect.intersect(fCurrentClipBounds);
mtkleina723b572014-08-15 11:49:49 -0700367 return devRect;
368 }
369
370 // Conservative device bounds for each op in the SkRecord.
371 SkAutoTMalloc<SkIRect> fBounds;
372
373 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
374 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
375 // device bounds of the current clip (fCurrentClipBounds).
mtklein828ce1f2014-08-13 12:58:45 -0700376 unsigned fCurrentOp;
mtkleina723b572014-08-15 11:49:49 -0700377 SkMatrix fCTM;
378 SkIRect fCurrentClipBounds;
379
380 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700381 SkTDArray<SaveBounds> fSaveStack;
382 SkTDArray<unsigned> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700383};
384
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000385} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700386
387void SkRecordFillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) {
mtklein828ce1f2014-08-13 12:58:45 -0700388 SkRecords::FillBounds(record, bbh);
mtklein5ad6ee12014-08-11 08:08:43 -0700389}