blob: bf3ce168daf571fe703cd924c201abe705489e31 [file] [log] [blame]
junov@google.com4370aed2012-01-18 16:21:08 +00001
2/*
junov@chromium.org10f7f972012-07-31 21:01:51 +00003 * Copyright 2012 Google Inc.
junov@google.com4370aed2012-01-18 16:21:08 +00004 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#include "SkDeferredCanvas.h"
10
junov@chromium.org88e29142012-08-07 16:48:22 +000011#include "SkChunkAlloc.h"
12#include "SkColorFilter.h"
13#include "SkDevice.h"
14#include "SkDrawFilter.h"
15#include "SkGPipe.h"
junov@google.com4370aed2012-01-18 16:21:08 +000016#include "SkPaint.h"
17#include "SkShader.h"
junov@google.com4370aed2012-01-18 16:21:08 +000018
junov@chromium.org9ed02b92012-08-14 13:36:26 +000019SK_DEFINE_INST_COUNT(SkDeferredCanvas::NotificationClient)
reed@google.com563a3b42012-06-26 19:24:50 +000020
junov@chromium.orgbfeddae2012-07-23 13:35:14 +000021enum {
22 // Deferred canvas will auto-flush when recording reaches this limit
23 kDefaultMaxRecordingStorageBytes = 64*1024*1024,
24};
25
junov@google.com4370aed2012-01-18 16:21:08 +000026namespace {
junov@chromium.org10f7f972012-07-31 21:01:51 +000027bool shouldDrawImmediately(const SkBitmap* bitmap, const SkPaint* paint) {
28 if (bitmap && bitmap->getTexture() && !bitmap->isImmutable()) {
29 return true;
30 }
31 if (paint) {
32 SkShader* shader = paint->getShader();
33 // Here we detect the case where the shader is an SkBitmapProcShader
34 // with a gpu texture attached. Checking this without RTTI
35 // requires making the assumption that only gradient shaders
36 // and SkBitmapProcShader implement asABitmap(). The following
37 // code may need to be revised if that assumption is ever broken.
38 if (shader && !shader->asAGradient(NULL)) {
39 SkBitmap bm;
40 if (shader->asABitmap(&bm, NULL, NULL) &&
41 NULL != bm.getTexture()) {
42 return true;
43 }
44 }
45 }
46 return false;
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +000047}
48}
49
50class AutoImmediateDrawIfNeeded {
51public:
junov@chromium.org10f7f972012-07-31 21:01:51 +000052 AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkBitmap* bitmap,
53 const SkPaint* paint) {
54 this->init(canvas, bitmap, paint);
55 }
56
57 AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkPaint* paint) {
58 this->init(canvas, NULL, paint);
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +000059 }
60
61 ~AutoImmediateDrawIfNeeded() {
62 if (fCanvas) {
63 fCanvas->setDeferredDrawing(true);
64 }
65 }
66private:
junov@chromium.org10f7f972012-07-31 21:01:51 +000067 void init(SkDeferredCanvas& canvas, const SkBitmap* bitmap, const SkPaint* paint)
68 {
69 if (canvas.isDeferredDrawing() && shouldDrawImmediately(bitmap, paint)) {
70 canvas.setDeferredDrawing(false);
71 fCanvas = &canvas;
72 } else {
73 fCanvas = NULL;
74 }
75 }
76
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +000077 SkDeferredCanvas* fCanvas;
78};
79
80namespace {
junov@google.com4370aed2012-01-18 16:21:08 +000081
junov@chromium.orgc16ca922012-02-24 22:06:27 +000082bool isPaintOpaque(const SkPaint* paint,
83 const SkBitmap* bmpReplacesShader = NULL) {
junov@google.com4370aed2012-01-18 16:21:08 +000084 // TODO: SkXfermode should have a virtual isOpaque method, which would
85 // make it possible to test modes that do not have a Coeff representation.
junov@chromium.org87f982c2012-02-23 21:34:34 +000086
87 if (!paint) {
88 return bmpReplacesShader ? bmpReplacesShader->isOpaque() : true;
89 }
90
junov@google.com4370aed2012-01-18 16:21:08 +000091 SkXfermode::Coeff srcCoeff, dstCoeff;
junov@chromium.org87f982c2012-02-23 21:34:34 +000092 if (SkXfermode::AsCoeff(paint->getXfermode(), &srcCoeff, &dstCoeff)){
junov@google.com4370aed2012-01-18 16:21:08 +000093 switch (dstCoeff) {
94 case SkXfermode::kZero_Coeff:
95 return true;
96 case SkXfermode::kISA_Coeff:
junov@chromium.org87f982c2012-02-23 21:34:34 +000097 if (paint->getAlpha() != 255) {
junov@google.com4370aed2012-01-18 16:21:08 +000098 break;
99 }
100 if (bmpReplacesShader) {
101 if (!bmpReplacesShader->isOpaque()) {
102 break;
103 }
junov@chromium.org87f982c2012-02-23 21:34:34 +0000104 } else if (paint->getShader() && !paint->getShader()->isOpaque()) {
junov@google.com4370aed2012-01-18 16:21:08 +0000105 break;
106 }
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000107 if (paint->getColorFilter() &&
108 ((paint->getColorFilter()->getFlags() &
junov@google.com4370aed2012-01-18 16:21:08 +0000109 SkColorFilter::kAlphaUnchanged_Flag) == 0)) {
110 break;
111 }
112 return true;
113 case SkXfermode::kSA_Coeff:
junov@chromium.org87f982c2012-02-23 21:34:34 +0000114 if (paint->getAlpha() != 0) {
junov@google.com4370aed2012-01-18 16:21:08 +0000115 break;
116 }
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000117 if (paint->getColorFilter() &&
118 ((paint->getColorFilter()->getFlags() &
junov@google.com4370aed2012-01-18 16:21:08 +0000119 SkColorFilter::kAlphaUnchanged_Flag) == 0)) {
120 break;
121 }
122 return true;
123 case SkXfermode::kSC_Coeff:
junov@chromium.org87f982c2012-02-23 21:34:34 +0000124 if (paint->getColor() != 0) { // all components must be 0
junov@google.com4370aed2012-01-18 16:21:08 +0000125 break;
126 }
junov@chromium.org87f982c2012-02-23 21:34:34 +0000127 if (bmpReplacesShader || paint->getShader()) {
junov@google.com4370aed2012-01-18 16:21:08 +0000128 break;
129 }
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000130 if (paint->getColorFilter() && (
131 (paint->getColorFilter()->getFlags() &
junov@google.com4370aed2012-01-18 16:21:08 +0000132 SkColorFilter::kAlphaUnchanged_Flag) == 0)) {
133 break;
134 }
135 return true;
136 default:
137 break;
138 }
139 }
140 return false;
141}
142
143} // unnamed namespace
144
junov@chromium.org88e29142012-08-07 16:48:22 +0000145//-----------------------------------------------------------------------------
146// DeferredPipeController
147//-----------------------------------------------------------------------------
148
149class DeferredPipeController : public SkGPipeController {
150public:
151 DeferredPipeController();
152 void setPlaybackCanvas(SkCanvas*);
153 virtual ~DeferredPipeController();
154 virtual void* requestBlock(size_t minRequest, size_t* actual) SK_OVERRIDE;
155 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
156 void playback();
157 void reset();
158 bool hasRecorded() const { return fAllocator.blockCount() != 0; }
159 size_t storageAllocatedForRecording() const { return fAllocator.totalCapacity(); }
160private:
161 enum {
162 kMinBlockSize = 4096
163 };
164 struct PipeBlock {
165 PipeBlock(void* block, size_t size) { fBlock = block, fSize = size; }
166 void* fBlock;
167 size_t fSize;
168 };
169 void* fBlock;
170 size_t fBytesWritten;
171 SkChunkAlloc fAllocator;
172 SkTDArray<PipeBlock> fBlockList;
173 SkGPipeReader fReader;
174};
175
176DeferredPipeController::DeferredPipeController() :
177 fAllocator(kMinBlockSize) {
178 fBlock = NULL;
179 fBytesWritten = 0;
180}
181
182DeferredPipeController::~DeferredPipeController() {
183 fAllocator.reset();
184}
185
186void DeferredPipeController::setPlaybackCanvas(SkCanvas* canvas) {
187 fReader.setCanvas(canvas);
188}
189
190void* DeferredPipeController::requestBlock(size_t minRequest, size_t *actual) {
191 if (fBlock) {
192 // Save the previous block for later
193 PipeBlock previousBloc(fBlock, fBytesWritten);
194 fBlockList.push(previousBloc);
195 }
196 int32_t blockSize = SkMax32(minRequest, kMinBlockSize);
197 fBlock = fAllocator.allocThrow(blockSize);
198 fBytesWritten = 0;
199 *actual = blockSize;
200 return fBlock;
201}
202
203void DeferredPipeController::notifyWritten(size_t bytes) {
204 fBytesWritten += bytes;
205}
206
207void DeferredPipeController::playback() {
208
209 for (int currentBlock = 0; currentBlock < fBlockList.count(); currentBlock++ ) {
210 fReader.playback(fBlockList[currentBlock].fBlock, fBlockList[currentBlock].fSize);
211 }
212 fBlockList.reset();
213
214 if (fBlock) {
215 fReader.playback(fBlock, fBytesWritten);
216 fBlock = NULL;
217 }
218
219 // Release all allocated blocks
220 fAllocator.reset();
221}
222
223void DeferredPipeController::reset() {
224 fBlockList.reset();
225 fBlock = NULL;
226 fAllocator.reset();
227}
228
229//-----------------------------------------------------------------------------
230// DeferredDevice
231//-----------------------------------------------------------------------------
232
233class DeferredDevice : public SkDevice {
234public:
235 DeferredDevice(SkDevice* immediateDevice,
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000236 SkDeferredCanvas::NotificationClient* notificationClient = NULL);
junov@chromium.org88e29142012-08-07 16:48:22 +0000237 ~DeferredDevice();
238
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000239 void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient);
junov@chromium.org88e29142012-08-07 16:48:22 +0000240 SkCanvas* recordingCanvas();
241 SkCanvas* immediateCanvas() const {return fImmediateCanvas;}
242 SkDevice* immediateDevice() const {return fImmediateDevice;}
243 bool isFreshFrame();
244 size_t storageAllocatedForRecording() const;
245 size_t freeMemoryIfPossible(size_t bytesToFree);
246 void flushPending();
247 void contentsCleared();
248 void setMaxRecordingStorage(size_t);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000249 void recordedDrawCommand();
junov@chromium.org88e29142012-08-07 16:48:22 +0000250
251 virtual uint32_t getDeviceCapabilities() SK_OVERRIDE;
252 virtual int width() const SK_OVERRIDE;
253 virtual int height() const SK_OVERRIDE;
254 virtual SkGpuRenderTarget* accessRenderTarget() SK_OVERRIDE;
255
256 virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config,
257 int width, int height,
258 bool isOpaque,
259 Usage usage) SK_OVERRIDE;
260
261 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
262 SkCanvas::Config8888 config8888) SK_OVERRIDE;
263
264protected:
265 virtual const SkBitmap& onAccessBitmap(SkBitmap*) SK_OVERRIDE;
266 virtual bool onReadPixels(const SkBitmap& bitmap,
267 int x, int y,
268 SkCanvas::Config8888 config8888) SK_OVERRIDE;
269
270 // The following methods are no-ops on a deferred device
271 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*)
272 SK_OVERRIDE
273 {return false;}
274 virtual void setMatrixClip(const SkMatrix&, const SkRegion&,
275 const SkClipStack&) SK_OVERRIDE
276 {}
277
278 // None of the following drawing methods should ever get called on the
279 // deferred device
280 virtual void clear(SkColor color)
281 {SkASSERT(0);}
282 virtual void drawPaint(const SkDraw&, const SkPaint& paint)
283 {SkASSERT(0);}
284 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode,
285 size_t count, const SkPoint[],
286 const SkPaint& paint)
287 {SkASSERT(0);}
288 virtual void drawRect(const SkDraw&, const SkRect& r,
289 const SkPaint& paint)
290 {SkASSERT(0);}
291 virtual void drawPath(const SkDraw&, const SkPath& path,
292 const SkPaint& paint,
293 const SkMatrix* prePathMatrix = NULL,
294 bool pathIsMutable = false)
295 {SkASSERT(0);}
296 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
297 const SkIRect* srcRectOrNull,
298 const SkMatrix& matrix, const SkPaint& paint)
299 {SkASSERT(0);}
300 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
301 int x, int y, const SkPaint& paint)
302 {SkASSERT(0);}
303 virtual void drawText(const SkDraw&, const void* text, size_t len,
304 SkScalar x, SkScalar y, const SkPaint& paint)
305 {SkASSERT(0);}
306 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
307 const SkScalar pos[], SkScalar constY,
308 int scalarsPerPos, const SkPaint& paint)
309 {SkASSERT(0);}
310 virtual void drawTextOnPath(const SkDraw&, const void* text,
311 size_t len, const SkPath& path,
312 const SkMatrix* matrix,
313 const SkPaint& paint)
314 {SkASSERT(0);}
315 virtual void drawPosTextOnPath(const SkDraw& draw, const void* text,
316 size_t len, const SkPoint pos[],
317 const SkPaint& paint,
318 const SkPath& path,
319 const SkMatrix* matrix)
320 {SkASSERT(0);}
321 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode,
322 int vertexCount, const SkPoint verts[],
323 const SkPoint texs[], const SkColor colors[],
324 SkXfermode* xmode, const uint16_t indices[],
325 int indexCount, const SkPaint& paint)
326 {SkASSERT(0);}
327 virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y,
328 const SkPaint&)
329 {SkASSERT(0);}
330private:
331 virtual void flush();
332
333 void endRecording();
334 void beginRecording();
335
336 DeferredPipeController fPipeController;
337 SkGPipeWriter fPipeWriter;
338 SkDevice* fImmediateDevice;
339 SkCanvas* fImmediateCanvas;
340 SkCanvas* fRecordingCanvas;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000341 SkDeferredCanvas::NotificationClient* fNotificationClient;
junov@chromium.org88e29142012-08-07 16:48:22 +0000342 bool fFreshFrame;
343 size_t fMaxRecordingStorageBytes;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000344 size_t fPreviousStorageAllocated;
junov@chromium.org88e29142012-08-07 16:48:22 +0000345};
346
347DeferredDevice::DeferredDevice(
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000348 SkDevice* immediateDevice, SkDeferredCanvas::NotificationClient* notificationClient) :
junov@chromium.org88e29142012-08-07 16:48:22 +0000349 SkDevice(SkBitmap::kNo_Config, immediateDevice->width(),
350 immediateDevice->height(), immediateDevice->isOpaque())
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000351 , fFreshFrame(true)
352 , fPreviousStorageAllocated(0){
junov@chromium.org88e29142012-08-07 16:48:22 +0000353
354 fMaxRecordingStorageBytes = kDefaultMaxRecordingStorageBytes;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000355 fNotificationClient = notificationClient;
356 SkSafeRef(fNotificationClient);
junov@chromium.org88e29142012-08-07 16:48:22 +0000357 fImmediateDevice = immediateDevice; // ref counted via fImmediateCanvas
358 fImmediateCanvas = SkNEW_ARGS(SkCanvas, (fImmediateDevice));
359 fPipeController.setPlaybackCanvas(fImmediateCanvas);
360 this->beginRecording();
361}
362
363DeferredDevice::~DeferredDevice() {
364 this->flushPending();
365 SkSafeUnref(fImmediateCanvas);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000366 SkSafeUnref(fNotificationClient);
junov@chromium.org88e29142012-08-07 16:48:22 +0000367}
368
369void DeferredDevice::setMaxRecordingStorage(size_t maxStorage) {
370 fMaxRecordingStorageBytes = maxStorage;
371 this->recordingCanvas(); // Accessing the recording canvas applies the new limit.
372}
373
374void DeferredDevice::endRecording() {
375 fPipeWriter.endRecording();
376 fPipeController.reset();
377 fRecordingCanvas = NULL;
378}
379
380void DeferredDevice::beginRecording() {
381 fRecordingCanvas = fPipeWriter.startRecording(&fPipeController, 0);
382}
383
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000384void DeferredDevice::setNotificationClient(
385 SkDeferredCanvas::NotificationClient* notificationClient) {
386 SkRefCnt_SafeAssign(fNotificationClient, notificationClient);
junov@chromium.org88e29142012-08-07 16:48:22 +0000387}
388
389void DeferredDevice::contentsCleared() {
390 if (!fRecordingCanvas->isDrawingToLayer()) {
391 fFreshFrame = true;
392
393 // TODO: find a way to transfer the state stack and layers
394 // to the new recording canvas. For now, purging only works
395 // with an empty stack.
396 if (fRecordingCanvas->getSaveCount() == 0) {
397
398 // Save state that is trashed by the purge
399 SkDrawFilter* drawFilter = fRecordingCanvas->getDrawFilter();
400 SkSafeRef(drawFilter); // So that it survives the purge
401 SkMatrix matrix = fRecordingCanvas->getTotalMatrix();
402 SkRegion clipRegion = fRecordingCanvas->getTotalClip();
403
404 // beginRecording creates a new recording canvas and discards the
405 // old one, hence purging deferred draw ops.
406 this->endRecording();
407 this->beginRecording();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000408 fPreviousStorageAllocated = storageAllocatedForRecording();
junov@chromium.org88e29142012-08-07 16:48:22 +0000409
410 // Restore pre-purge state
411 if (!clipRegion.isEmpty()) {
412 fRecordingCanvas->clipRegion(clipRegion,
413 SkRegion::kReplace_Op);
414 }
415 if (!matrix.isIdentity()) {
416 fRecordingCanvas->setMatrix(matrix);
417 }
418 if (drawFilter) {
419 fRecordingCanvas->setDrawFilter(drawFilter)->unref();
420 }
421 }
422 }
423}
424
425bool DeferredDevice::isFreshFrame() {
426 bool ret = fFreshFrame;
427 fFreshFrame = false;
428 return ret;
429}
430
431void DeferredDevice::flushPending() {
432 if (!fPipeController.hasRecorded()) {
433 return;
434 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000435 if (fNotificationClient) {
436 fNotificationClient->prepareForDraw();
junov@chromium.org88e29142012-08-07 16:48:22 +0000437 }
junov@chromium.org88e29142012-08-07 16:48:22 +0000438 fPipeWriter.flushRecording(true);
439 fPipeController.playback();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000440 if (fNotificationClient) {
441 fNotificationClient->flushedDrawCommands();
442 }
443 fPreviousStorageAllocated = storageAllocatedForRecording();
junov@chromium.org88e29142012-08-07 16:48:22 +0000444}
445
446void DeferredDevice::flush() {
447 this->flushPending();
448 fImmediateCanvas->flush();
449}
450
451size_t DeferredDevice::freeMemoryIfPossible(size_t bytesToFree) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000452 size_t val = fPipeWriter.freeMemoryIfPossible(bytesToFree);
453 fPreviousStorageAllocated = storageAllocatedForRecording();
454 return val;
junov@chromium.org88e29142012-08-07 16:48:22 +0000455}
456
457size_t DeferredDevice::storageAllocatedForRecording() const {
458 return (fPipeController.storageAllocatedForRecording()
459 + fPipeWriter.storageAllocatedForRecording());
460}
461
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000462void DeferredDevice::recordedDrawCommand() {
junov@chromium.org88e29142012-08-07 16:48:22 +0000463 size_t storageAllocated = this->storageAllocatedForRecording();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000464
junov@chromium.org88e29142012-08-07 16:48:22 +0000465 if (storageAllocated > fMaxRecordingStorageBytes) {
466 // First, attempt to reduce cache without flushing
467 size_t tryFree = storageAllocated - fMaxRecordingStorageBytes;
468 if (this->freeMemoryIfPossible(tryFree) < tryFree) {
469 // Flush is necessary to free more space.
470 this->flushPending();
471 // Free as much as possible to avoid oscillating around fMaxRecordingStorageBytes
472 // which could cause a high flushing frequency.
473 this->freeMemoryIfPossible(~0);
474 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000475 storageAllocated = this->storageAllocatedForRecording();
junov@chromium.org88e29142012-08-07 16:48:22 +0000476 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000477
478 if (fNotificationClient &&
479 storageAllocated != fPreviousStorageAllocated) {
480 fPreviousStorageAllocated = storageAllocated;
481 fNotificationClient->storageAllocatedForRecordingChanged(storageAllocated);
482 }
483}
484
485SkCanvas* DeferredDevice::recordingCanvas() {
junov@chromium.org88e29142012-08-07 16:48:22 +0000486 return fRecordingCanvas;
487}
488
489uint32_t DeferredDevice::getDeviceCapabilities() {
490 return fImmediateDevice->getDeviceCapabilities();
491}
492
493int DeferredDevice::width() const {
494 return fImmediateDevice->width();
495}
496
497int DeferredDevice::height() const {
498 return fImmediateDevice->height();
499}
500
501SkGpuRenderTarget* DeferredDevice::accessRenderTarget() {
502 this->flushPending();
503 return fImmediateDevice->accessRenderTarget();
504}
505
506void DeferredDevice::writePixels(const SkBitmap& bitmap,
507 int x, int y, SkCanvas::Config8888 config8888) {
508
509 if (x <= 0 && y <= 0 && (x + bitmap.width()) >= width() &&
510 (y + bitmap.height()) >= height()) {
511 this->contentsCleared();
512 }
513
514 if (SkBitmap::kARGB_8888_Config == bitmap.config() &&
515 SkCanvas::kNative_Premul_Config8888 != config8888 &&
516 kPMColorAlias != config8888) {
517 //Special case config: no deferral
518 this->flushPending();
519 fImmediateDevice->writePixels(bitmap, x, y, config8888);
520 return;
521 }
522
523 SkPaint paint;
524 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
525 if (shouldDrawImmediately(&bitmap, NULL)) {
526 this->flushPending();
527 fImmediateCanvas->drawSprite(bitmap, x, y, &paint);
528 } else {
529 this->recordingCanvas()->drawSprite(bitmap, x, y, &paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000530 this->recordedDrawCommand();
531
junov@chromium.org88e29142012-08-07 16:48:22 +0000532 }
533}
534
535const SkBitmap& DeferredDevice::onAccessBitmap(SkBitmap*) {
536 this->flushPending();
537 return fImmediateDevice->accessBitmap(false);
538}
539
540SkDevice* DeferredDevice::onCreateCompatibleDevice(
541 SkBitmap::Config config, int width, int height, bool isOpaque,
542 Usage usage) {
543
544 // Save layer usage not supported, and not required by SkDeferredCanvas.
545 SkASSERT(usage != kSaveLayer_Usage);
546 // Create a compatible non-deferred device.
547 SkAutoTUnref<SkDevice> compatibleDevice
548 (fImmediateDevice->createCompatibleDevice(config, width, height,
549 isOpaque));
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000550 return SkNEW_ARGS(DeferredDevice, (compatibleDevice, fNotificationClient));
junov@chromium.org88e29142012-08-07 16:48:22 +0000551}
552
553bool DeferredDevice::onReadPixels(
554 const SkBitmap& bitmap, int x, int y, SkCanvas::Config8888 config8888) {
555 this->flushPending();
556 return fImmediateCanvas->readPixels(const_cast<SkBitmap*>(&bitmap),
557 x, y, config8888);
558}
559
560
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000561SkDeferredCanvas::SkDeferredCanvas() {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000562 this->init();
junov@google.com4370aed2012-01-18 16:21:08 +0000563}
564
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000565SkDeferredCanvas::SkDeferredCanvas(SkDevice* device) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000566 this->init();
567 this->setDevice(device);
junov@google.com4370aed2012-01-18 16:21:08 +0000568}
569
570SkDeferredCanvas::SkDeferredCanvas(SkDevice* device,
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000571 NotificationClient* notificationClient) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000572 this->init();
573 this->setDevice(device);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000574 this->setNotificationClient(notificationClient);
junov@google.com4370aed2012-01-18 16:21:08 +0000575}
576
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000577void SkDeferredCanvas::init() {
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000578 fDeferredDrawing = true; // On by default
junov@google.com4370aed2012-01-18 16:21:08 +0000579}
580
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000581void SkDeferredCanvas::setMaxRecordingStorage(size_t maxStorage) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000582 this->validate();
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000583 this->getDeferredDevice()->setMaxRecordingStorage(maxStorage);
584}
585
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000586size_t SkDeferredCanvas::storageAllocatedForRecording() const {
587 return this->getDeferredDevice()->storageAllocatedForRecording();
588}
589
590size_t SkDeferredCanvas::freeMemoryIfPossible(size_t bytesToFree) {
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000591 return this->getDeferredDevice()->freeMemoryIfPossible(bytesToFree);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000592}
593
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000594void SkDeferredCanvas::recordedDrawCommand() {
595 if (fDeferredDrawing) {
596 this->getDeferredDevice()->recordedDrawCommand();
597 }
598}
599
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000600void SkDeferredCanvas::validate() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000601 SkASSERT(this->getDevice());
junov@google.com4370aed2012-01-18 16:21:08 +0000602}
603
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000604SkCanvas* SkDeferredCanvas::drawingCanvas() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000605 this->validate();
606 return fDeferredDrawing ? this->getDeferredDevice()->recordingCanvas() :
607 this->getDeferredDevice()->immediateCanvas();
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000608}
609
junov@chromium.org88e29142012-08-07 16:48:22 +0000610SkCanvas* SkDeferredCanvas::immediateCanvas() const {
611 this->validate();
612 return this->getDeferredDevice()->immediateCanvas();
613}
614
615DeferredDevice* SkDeferredCanvas::getDeferredDevice() const {
616 return static_cast<DeferredDevice*>(this->getDevice());
junov@google.com4370aed2012-01-18 16:21:08 +0000617}
618
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000619void SkDeferredCanvas::setDeferredDrawing(bool val) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000620 this->validate(); // Must set device before calling this method
junov@google.com4370aed2012-01-18 16:21:08 +0000621 if (val != fDeferredDrawing) {
622 if (fDeferredDrawing) {
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000623 // Going live.
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000624 this->getDeferredDevice()->flushPending();
junov@google.com4370aed2012-01-18 16:21:08 +0000625 }
626 fDeferredDrawing = val;
627 }
628}
629
junov@chromium.org88e29142012-08-07 16:48:22 +0000630bool SkDeferredCanvas::isDeferredDrawing() const {
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +0000631 return fDeferredDrawing;
632}
633
junov@chromium.org88e29142012-08-07 16:48:22 +0000634bool SkDeferredCanvas::isFreshFrame() const {
635 return this->getDeferredDevice()->isFreshFrame();
636}
637
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000638SkDeferredCanvas::~SkDeferredCanvas() {
junov@google.com4370aed2012-01-18 16:21:08 +0000639}
640
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000641SkDevice* SkDeferredCanvas::setDevice(SkDevice* device) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000642 this->INHERITED::setDevice(SkNEW_ARGS(DeferredDevice, (device)))->unref();
junov@google.com4370aed2012-01-18 16:21:08 +0000643 return device;
644}
645
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000646SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient(
647 NotificationClient* notificationClient) {
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000648
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000649 DeferredDevice* deferredDevice = this->getDeferredDevice();
junov@google.com4370aed2012-01-18 16:21:08 +0000650 SkASSERT(deferredDevice);
651 if (deferredDevice) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000652 deferredDevice->setNotificationClient(notificationClient);
junov@google.com4370aed2012-01-18 16:21:08 +0000653 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000654 return notificationClient;
junov@google.com4370aed2012-01-18 16:21:08 +0000655}
656
657bool SkDeferredCanvas::isFullFrame(const SkRect* rect,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000658 const SkPaint* paint) const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000659 SkCanvas* canvas = this->drawingCanvas();
660 SkISize canvasSize = this->getDeviceSize();
junov@google.com4370aed2012-01-18 16:21:08 +0000661 if (rect) {
662 if (!canvas->getTotalMatrix().rectStaysRect()) {
663 return false; // conservative
664 }
665
666 SkRect transformedRect;
667 canvas->getTotalMatrix().mapRect(&transformedRect, *rect);
668
669 if (paint) {
670 SkPaint::Style paintStyle = paint->getStyle();
671 if (!(paintStyle == SkPaint::kFill_Style ||
672 paintStyle == SkPaint::kStrokeAndFill_Style)) {
673 return false;
674 }
675 if (paint->getMaskFilter() || paint->getLooper()
676 || paint->getPathEffect() || paint->getImageFilter()) {
677 return false; // conservative
678 }
679 }
680
681 // The following test holds with AA enabled, and is conservative
682 // by a 0.5 pixel margin with AA disabled
junov@chromium.orgb1e218e2012-02-13 22:27:58 +0000683 if (transformedRect.fLeft > SkIntToScalar(0) ||
684 transformedRect.fTop > SkIntToScalar(0) ||
685 transformedRect.fRight < SkIntToScalar(canvasSize.fWidth) ||
686 transformedRect.fBottom < SkIntToScalar(canvasSize.fHeight)) {
junov@google.com4370aed2012-01-18 16:21:08 +0000687 return false;
688 }
689 }
690
691 switch (canvas->getClipType()) {
692 case SkCanvas::kRect_ClipType :
693 {
694 SkIRect bounds;
695 canvas->getClipDeviceBounds(&bounds);
696 if (bounds.fLeft > 0 || bounds.fTop > 0 ||
697 bounds.fRight < canvasSize.fWidth ||
698 bounds.fBottom < canvasSize.fHeight)
699 return false;
700 }
701 break;
702 case SkCanvas::kComplex_ClipType :
703 return false; // conservative
704 case SkCanvas::kEmpty_ClipType:
705 default:
706 break;
707 };
708
709 return true;
710}
711
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000712int SkDeferredCanvas::save(SaveFlags flags) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000713 this->drawingCanvas()->save(flags);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000714 int val = this->INHERITED::save(flags);
715 this->recordedDrawCommand();
716
717 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000718}
719
720int SkDeferredCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000721 SaveFlags flags) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000722 this->drawingCanvas()->saveLayer(bounds, paint, flags);
junov@chromium.orga907ac32012-02-24 21:54:07 +0000723 int count = this->INHERITED::save(flags);
724 this->clipRectBounds(bounds, flags, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000725 this->recordedDrawCommand();
726
junov@chromium.orga907ac32012-02-24 21:54:07 +0000727 return count;
junov@google.com4370aed2012-01-18 16:21:08 +0000728}
729
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000730void SkDeferredCanvas::restore() {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000731 this->drawingCanvas()->restore();
junov@chromium.orga907ac32012-02-24 21:54:07 +0000732 this->INHERITED::restore();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000733 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000734}
735
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000736bool SkDeferredCanvas::isDrawingToLayer() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000737 return this->drawingCanvas()->isDrawingToLayer();
junov@google.com4370aed2012-01-18 16:21:08 +0000738}
739
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000740bool SkDeferredCanvas::translate(SkScalar dx, SkScalar dy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000741 this->drawingCanvas()->translate(dx, dy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000742 bool val = this->INHERITED::translate(dx, dy);
743 this->recordedDrawCommand();
744 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000745}
746
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000747bool SkDeferredCanvas::scale(SkScalar sx, SkScalar sy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000748 this->drawingCanvas()->scale(sx, sy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000749 bool val = this->INHERITED::scale(sx, sy);
750 this->recordedDrawCommand();
751 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000752}
753
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000754bool SkDeferredCanvas::rotate(SkScalar degrees) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000755 this->drawingCanvas()->rotate(degrees);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000756 bool val = this->INHERITED::rotate(degrees);
757 this->recordedDrawCommand();
758 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000759}
760
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000761bool SkDeferredCanvas::skew(SkScalar sx, SkScalar sy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000762 this->drawingCanvas()->skew(sx, sy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000763 bool val = this->INHERITED::skew(sx, sy);
764 this->recordedDrawCommand();
765 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000766}
767
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000768bool SkDeferredCanvas::concat(const SkMatrix& matrix) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000769 this->drawingCanvas()->concat(matrix);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000770 bool val = this->INHERITED::concat(matrix);
771 this->recordedDrawCommand();
772 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000773}
774
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000775void SkDeferredCanvas::setMatrix(const SkMatrix& matrix) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000776 this->drawingCanvas()->setMatrix(matrix);
junov@chromium.orga907ac32012-02-24 21:54:07 +0000777 this->INHERITED::setMatrix(matrix);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000778 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000779}
780
781bool SkDeferredCanvas::clipRect(const SkRect& rect,
782 SkRegion::Op op,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000783 bool doAntiAlias) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000784 this->drawingCanvas()->clipRect(rect, op, doAntiAlias);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000785 bool val = this->INHERITED::clipRect(rect, op, doAntiAlias);
786 this->recordedDrawCommand();
787 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000788}
789
790bool SkDeferredCanvas::clipPath(const SkPath& path,
791 SkRegion::Op op,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000792 bool doAntiAlias) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000793 this->drawingCanvas()->clipPath(path, op, doAntiAlias);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000794 bool val = this->INHERITED::clipPath(path, op, doAntiAlias);
795 this->recordedDrawCommand();
796 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000797}
798
799bool SkDeferredCanvas::clipRegion(const SkRegion& deviceRgn,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000800 SkRegion::Op op) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000801 this->drawingCanvas()->clipRegion(deviceRgn, op);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000802 bool val = this->INHERITED::clipRegion(deviceRgn, op);
803 this->recordedDrawCommand();
804 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000805}
806
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000807void SkDeferredCanvas::clear(SkColor color) {
junov@google.com4370aed2012-01-18 16:21:08 +0000808 // purge pending commands
809 if (fDeferredDrawing) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000810 this->getDeferredDevice()->contentsCleared();
junov@google.com4370aed2012-01-18 16:21:08 +0000811 }
812
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000813 this->drawingCanvas()->clear(color);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000814 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000815}
816
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000817void SkDeferredCanvas::drawPaint(const SkPaint& paint) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000818 if (fDeferredDrawing && this->isFullFrame(NULL, &paint) &&
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000819 isPaintOpaque(&paint)) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000820 this->getDeferredDevice()->contentsCleared();
junov@google.com4370aed2012-01-18 16:21:08 +0000821 }
junov@chromium.org10f7f972012-07-31 21:01:51 +0000822 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000823 this->drawingCanvas()->drawPaint(paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000824 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000825}
826
827void SkDeferredCanvas::drawPoints(PointMode mode, size_t count,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000828 const SkPoint pts[], const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000829 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000830 this->drawingCanvas()->drawPoints(mode, count, pts, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000831 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000832}
833
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000834void SkDeferredCanvas::drawRect(const SkRect& rect, const SkPaint& paint) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000835 if (fDeferredDrawing && this->isFullFrame(&rect, &paint) &&
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000836 isPaintOpaque(&paint)) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000837 this->getDeferredDevice()->contentsCleared();
junov@google.com4370aed2012-01-18 16:21:08 +0000838 }
839
junov@chromium.org10f7f972012-07-31 21:01:51 +0000840 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000841 this->drawingCanvas()->drawRect(rect, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000842 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000843}
844
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000845void SkDeferredCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000846 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000847 this->drawingCanvas()->drawPath(path, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000848 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000849}
850
851void SkDeferredCanvas::drawBitmap(const SkBitmap& bitmap, SkScalar left,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000852 SkScalar top, const SkPaint* paint) {
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000853 SkRect bitmapRect = SkRect::MakeXYWH(left, top,
854 SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
junov@google.com4370aed2012-01-18 16:21:08 +0000855 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000856 this->isFullFrame(&bitmapRect, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000857 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000858 this->getDeferredDevice()->contentsCleared();
junov@google.com4370aed2012-01-18 16:21:08 +0000859 }
860
junov@chromium.org10f7f972012-07-31 21:01:51 +0000861 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000862 this->drawingCanvas()->drawBitmap(bitmap, left, top, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000863 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000864}
865
866void SkDeferredCanvas::drawBitmapRect(const SkBitmap& bitmap,
867 const SkIRect* src,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000868 const SkRect& dst,
869 const SkPaint* paint) {
junov@google.com4370aed2012-01-18 16:21:08 +0000870 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000871 this->isFullFrame(&dst, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000872 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000873 this->getDeferredDevice()->contentsCleared();
junov@google.com4370aed2012-01-18 16:21:08 +0000874 }
875
junov@chromium.org10f7f972012-07-31 21:01:51 +0000876 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000877 this->drawingCanvas()->drawBitmapRect(bitmap, src, dst, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000878 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000879}
880
881
882void SkDeferredCanvas::drawBitmapMatrix(const SkBitmap& bitmap,
883 const SkMatrix& m,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000884 const SkPaint* paint) {
junov@google.com4370aed2012-01-18 16:21:08 +0000885 // TODO: reset recording canvas if paint+bitmap is opaque and clip rect
886 // covers canvas entirely and transformed bitmap covers canvas entirely
junov@chromium.org10f7f972012-07-31 21:01:51 +0000887 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000888 this->drawingCanvas()->drawBitmapMatrix(bitmap, m, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000889 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000890}
891
892void SkDeferredCanvas::drawBitmapNine(const SkBitmap& bitmap,
893 const SkIRect& center, const SkRect& dst,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000894 const SkPaint* paint) {
junov@google.com4370aed2012-01-18 16:21:08 +0000895 // TODO: reset recording canvas if paint+bitmap is opaque and clip rect
896 // covers canvas entirely and dst covers canvas entirely
junov@chromium.org10f7f972012-07-31 21:01:51 +0000897 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000898 this->drawingCanvas()->drawBitmapNine(bitmap, center, dst, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000899 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000900}
901
902void SkDeferredCanvas::drawSprite(const SkBitmap& bitmap, int left, int top,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000903 const SkPaint* paint) {
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000904 SkRect bitmapRect = SkRect::MakeXYWH(
905 SkIntToScalar(left),
906 SkIntToScalar(top),
907 SkIntToScalar(bitmap.width()),
908 SkIntToScalar(bitmap.height()));
junov@google.com4370aed2012-01-18 16:21:08 +0000909 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000910 this->isFullFrame(&bitmapRect, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000911 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000912 this->getDeferredDevice()->contentsCleared();
junov@google.com4370aed2012-01-18 16:21:08 +0000913 }
914
junov@chromium.org10f7f972012-07-31 21:01:51 +0000915 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000916 this->drawingCanvas()->drawSprite(bitmap, left, top, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000917 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000918}
919
920void SkDeferredCanvas::drawText(const void* text, size_t byteLength,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000921 SkScalar x, SkScalar y, const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000922 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000923 this->drawingCanvas()->drawText(text, byteLength, x, y, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000924 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000925}
926
927void SkDeferredCanvas::drawPosText(const void* text, size_t byteLength,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000928 const SkPoint pos[], const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000929 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000930 this->drawingCanvas()->drawPosText(text, byteLength, pos, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000931 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000932}
933
934void SkDeferredCanvas::drawPosTextH(const void* text, size_t byteLength,
935 const SkScalar xpos[], SkScalar constY,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000936 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000937 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000938 this->drawingCanvas()->drawPosTextH(text, byteLength, xpos, constY, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000939 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000940}
941
942void SkDeferredCanvas::drawTextOnPath(const void* text, size_t byteLength,
943 const SkPath& path,
944 const SkMatrix* matrix,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000945 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000946 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000947 this->drawingCanvas()->drawTextOnPath(text, byteLength, path, matrix, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000948 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000949}
950
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000951void SkDeferredCanvas::drawPicture(SkPicture& picture) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000952 this->drawingCanvas()->drawPicture(picture);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000953 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000954}
955
956void SkDeferredCanvas::drawVertices(VertexMode vmode, int vertexCount,
957 const SkPoint vertices[],
958 const SkPoint texs[],
959 const SkColor colors[], SkXfermode* xmode,
960 const uint16_t indices[], int indexCount,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000961 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000962 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000963 this->drawingCanvas()->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode,
964 indices, indexCount, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000965 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000966}
967
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000968SkBounder* SkDeferredCanvas::setBounder(SkBounder* bounder) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000969 this->drawingCanvas()->setBounder(bounder);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000970 this->INHERITED::setBounder(bounder);
971 this->recordedDrawCommand();
972 return bounder;
junov@google.com4370aed2012-01-18 16:21:08 +0000973}
974
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000975SkDrawFilter* SkDeferredCanvas::setDrawFilter(SkDrawFilter* filter) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000976 this->drawingCanvas()->setDrawFilter(filter);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000977 this->INHERITED::setDrawFilter(filter);
978 this->recordedDrawCommand();
979 return filter;
junov@google.com4370aed2012-01-18 16:21:08 +0000980}
981
982SkCanvas* SkDeferredCanvas::canvasForDrawIter() {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000983 return this->drawingCanvas();
junov@google.com4370aed2012-01-18 16:21:08 +0000984}