blob: af604a2119e3ee712bd0a174cf6fa1afc8fa4365 [file] [log] [blame]
junov@google.com4370aed2012-01-18 16:21:08 +00001
2/*
junov@chromium.orgbaa02202013-01-24 14:38:23 +00003 * Copyright 2013 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
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000011#include "SkBitmapDevice.h"
junov@chromium.org88e29142012-08-07 16:48:22 +000012#include "SkChunkAlloc.h"
13#include "SkColorFilter.h"
junov@chromium.org88e29142012-08-07 16:48:22 +000014#include "SkDrawFilter.h"
15#include "SkGPipe.h"
junov@google.com4370aed2012-01-18 16:21:08 +000016#include "SkPaint.h"
junov@chromium.orgbaa02202013-01-24 14:38:23 +000017#include "SkPaintPriv.h"
reed@google.com4ed0fb72012-12-12 20:48:18 +000018#include "SkRRect.h"
junov@google.com4370aed2012-01-18 16:21:08 +000019#include "SkShader.h"
junov@chromium.org67d74222013-04-12 13:33:01 +000020#include "SkSurface.h"
junov@google.com4370aed2012-01-18 16:21:08 +000021
junov@chromium.orgbfeddae2012-07-23 13:35:14 +000022enum {
23 // Deferred canvas will auto-flush when recording reaches this limit
24 kDefaultMaxRecordingStorageBytes = 64*1024*1024,
reed@google.com140d7282013-01-07 20:25:04 +000025 kDeferredCanvasBitmapSizeThreshold = ~0U, // Disables this feature
junov@chromium.orgbfeddae2012-07-23 13:35:14 +000026};
27
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +000028enum PlaybackMode {
29 kNormal_PlaybackMode,
30 kSilent_PlaybackMode,
31};
32
junov@google.com4370aed2012-01-18 16:21:08 +000033namespace {
sugoi@google.com7775fd52012-11-21 15:47:04 +000034bool shouldDrawImmediately(const SkBitmap* bitmap, const SkPaint* paint,
35 size_t bitmapSizeThreshold) {
36 if (bitmap && ((bitmap->getTexture() && !bitmap->isImmutable()) ||
37 (bitmap->getSize() > bitmapSizeThreshold))) {
junov@chromium.org10f7f972012-07-31 21:01:51 +000038 return true;
39 }
40 if (paint) {
41 SkShader* shader = paint->getShader();
42 // Here we detect the case where the shader is an SkBitmapProcShader
43 // with a gpu texture attached. Checking this without RTTI
44 // requires making the assumption that only gradient shaders
45 // and SkBitmapProcShader implement asABitmap(). The following
46 // code may need to be revised if that assumption is ever broken.
47 if (shader && !shader->asAGradient(NULL)) {
48 SkBitmap bm;
rmistry@google.comd6176b02012-08-23 18:14:13 +000049 if (shader->asABitmap(&bm, NULL, NULL) &&
junov@chromium.org10f7f972012-07-31 21:01:51 +000050 NULL != bm.getTexture()) {
51 return true;
52 }
53 }
54 }
55 return false;
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +000056}
57}
58
junov@chromium.org88e29142012-08-07 16:48:22 +000059//-----------------------------------------------------------------------------
60// DeferredPipeController
61//-----------------------------------------------------------------------------
62
63class DeferredPipeController : public SkGPipeController {
64public:
65 DeferredPipeController();
66 void setPlaybackCanvas(SkCanvas*);
67 virtual ~DeferredPipeController();
68 virtual void* requestBlock(size_t minRequest, size_t* actual) SK_OVERRIDE;
69 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
junov@chromium.orgfb103892012-09-20 19:35:43 +000070 void playback(bool silent);
junov@chromium.orga38dfb62012-09-20 22:10:33 +000071 bool hasPendingCommands() const { return fAllocator.blockCount() != 0; }
junov@chromium.org88e29142012-08-07 16:48:22 +000072 size_t storageAllocatedForRecording() const { return fAllocator.totalCapacity(); }
73private:
74 enum {
75 kMinBlockSize = 4096
76 };
77 struct PipeBlock {
78 PipeBlock(void* block, size_t size) { fBlock = block, fSize = size; }
79 void* fBlock;
80 size_t fSize;
81 };
82 void* fBlock;
83 size_t fBytesWritten;
84 SkChunkAlloc fAllocator;
85 SkTDArray<PipeBlock> fBlockList;
86 SkGPipeReader fReader;
87};
88
89DeferredPipeController::DeferredPipeController() :
90 fAllocator(kMinBlockSize) {
91 fBlock = NULL;
92 fBytesWritten = 0;
93}
94
95DeferredPipeController::~DeferredPipeController() {
96 fAllocator.reset();
97}
98
99void DeferredPipeController::setPlaybackCanvas(SkCanvas* canvas) {
100 fReader.setCanvas(canvas);
101}
102
103void* DeferredPipeController::requestBlock(size_t minRequest, size_t *actual) {
104 if (fBlock) {
105 // Save the previous block for later
106 PipeBlock previousBloc(fBlock, fBytesWritten);
107 fBlockList.push(previousBloc);
108 }
robertphillips@google.comadacc702013-10-14 21:53:24 +0000109 size_t blockSize = SkTMax<size_t>(minRequest, kMinBlockSize);
junov@chromium.org88e29142012-08-07 16:48:22 +0000110 fBlock = fAllocator.allocThrow(blockSize);
111 fBytesWritten = 0;
112 *actual = blockSize;
113 return fBlock;
114}
115
116void DeferredPipeController::notifyWritten(size_t bytes) {
117 fBytesWritten += bytes;
118}
119
junov@chromium.orgfb103892012-09-20 19:35:43 +0000120void DeferredPipeController::playback(bool silent) {
121 uint32_t flags = silent ? SkGPipeReader::kSilent_PlaybackFlag : 0;
junov@chromium.org88e29142012-08-07 16:48:22 +0000122 for (int currentBlock = 0; currentBlock < fBlockList.count(); currentBlock++ ) {
junov@chromium.orgfb103892012-09-20 19:35:43 +0000123 fReader.playback(fBlockList[currentBlock].fBlock, fBlockList[currentBlock].fSize,
124 flags);
junov@chromium.org88e29142012-08-07 16:48:22 +0000125 }
126 fBlockList.reset();
127
128 if (fBlock) {
junov@chromium.orgfb103892012-09-20 19:35:43 +0000129 fReader.playback(fBlock, fBytesWritten, flags);
junov@chromium.org88e29142012-08-07 16:48:22 +0000130 fBlock = NULL;
131 }
132
133 // Release all allocated blocks
134 fAllocator.reset();
135}
136
junov@chromium.org88e29142012-08-07 16:48:22 +0000137//-----------------------------------------------------------------------------
138// DeferredDevice
139//-----------------------------------------------------------------------------
reed@google.combd246e22014-02-14 14:41:28 +0000140class DeferredDevice : public SkBaseDevice {
junov@chromium.org88e29142012-08-07 16:48:22 +0000141public:
junov@chromium.org67d74222013-04-12 13:33:01 +0000142 explicit DeferredDevice(SkSurface* surface);
junov@chromium.org88e29142012-08-07 16:48:22 +0000143 ~DeferredDevice();
144
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000145 void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient);
junov@chromium.org88e29142012-08-07 16:48:22 +0000146 SkCanvas* recordingCanvas();
147 SkCanvas* immediateCanvas() const {return fImmediateCanvas;}
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000148 SkBaseDevice* immediateDevice() const {return fImmediateCanvas->getTopDevice();}
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000149 SkImage* newImageSnapshot();
junov@chromium.org7070f762013-05-24 17:13:00 +0000150 void setSurface(SkSurface* surface);
junov@chromium.org88e29142012-08-07 16:48:22 +0000151 bool isFreshFrame();
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000152 bool hasPendingCommands();
junov@chromium.org88e29142012-08-07 16:48:22 +0000153 size_t storageAllocatedForRecording() const;
154 size_t freeMemoryIfPossible(size_t bytesToFree);
sugoi@google.com7775fd52012-11-21 15:47:04 +0000155 size_t getBitmapSizeThreshold() const;
156 void setBitmapSizeThreshold(size_t sizeThreshold);
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000157 void flushPendingCommands(PlaybackMode);
junov@chromium.org0a67f962012-09-19 22:48:34 +0000158 void skipPendingCommands();
junov@chromium.org88e29142012-08-07 16:48:22 +0000159 void setMaxRecordingStorage(size_t);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000160 void recordedDrawCommand();
junov@chromium.org88e29142012-08-07 16:48:22 +0000161
162 virtual uint32_t getDeviceCapabilities() SK_OVERRIDE;
163 virtual int width() const SK_OVERRIDE;
164 virtual int height() const SK_OVERRIDE;
reed@google.combd246e22014-02-14 14:41:28 +0000165 virtual SkBitmap::Config config() const SK_OVERRIDE;
166 virtual bool isOpaque() const SK_OVERRIDE;
167 virtual SkImageInfo imageInfo() const SK_OVERRIDE;
168
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000169 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
junov@chromium.org88e29142012-08-07 16:48:22 +0000170
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000171 virtual SkBaseDevice* onCreateCompatibleDevice(SkBitmap::Config config,
172 int width, int height,
173 bool isOpaque,
174 Usage usage) SK_OVERRIDE;
junov@chromium.org88e29142012-08-07 16:48:22 +0000175
176 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
177 SkCanvas::Config8888 config8888) SK_OVERRIDE;
178
reed@google.com76f10a32014-02-05 15:32:21 +0000179 virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE;
180
junov@chromium.org88e29142012-08-07 16:48:22 +0000181protected:
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000182 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
junov@chromium.org88e29142012-08-07 16:48:22 +0000183 virtual bool onReadPixels(const SkBitmap& bitmap,
184 int x, int y,
185 SkCanvas::Config8888 config8888) SK_OVERRIDE;
186
187 // The following methods are no-ops on a deferred device
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000188 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) SK_OVERRIDE {
189 return false;
190 }
junov@chromium.org88e29142012-08-07 16:48:22 +0000191
192 // None of the following drawing methods should ever get called on the
193 // deferred device
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000194 virtual void clear(SkColor color) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000195 {SkASSERT(0);}
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000196 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000197 {SkASSERT(0);}
198 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode,
199 size_t count, const SkPoint[],
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000200 const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000201 {SkASSERT(0);}
202 virtual void drawRect(const SkDraw&, const SkRect& r,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000203 const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000204 {SkASSERT(0);}
reed@google.combd246e22014-02-14 14:41:28 +0000205 virtual void drawOval(const SkDraw&, const SkRect&, const SkPaint&) SK_OVERRIDE
206 {SkASSERT(0);}
scroggo@google.comcac8d012013-11-12 17:10:02 +0000207 virtual void drawRRect(const SkDraw&, const SkRRect& rr,
208 const SkPaint& paint) SK_OVERRIDE
reed@google.combd246e22014-02-14 14:41:28 +0000209 {SkASSERT(0);}
junov@chromium.org88e29142012-08-07 16:48:22 +0000210 virtual void drawPath(const SkDraw&, const SkPath& path,
211 const SkPaint& paint,
212 const SkMatrix* prePathMatrix = NULL,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000213 bool pathIsMutable = false) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000214 {SkASSERT(0);}
215 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000216 const SkMatrix& matrix, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000217 {SkASSERT(0);}
reed@google.combd246e22014-02-14 14:41:28 +0000218 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&, const SkRect*,
219 const SkRect&, const SkPaint&,
220 SkCanvas::DrawBitmapRectFlags) SK_OVERRIDE
221 {SkASSERT(0);}
junov@chromium.org88e29142012-08-07 16:48:22 +0000222 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000223 int x, int y, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000224 {SkASSERT(0);}
225 virtual void drawText(const SkDraw&, const void* text, size_t len,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000226 SkScalar x, SkScalar y, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000227 {SkASSERT(0);}
228 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
229 const SkScalar pos[], SkScalar constY,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000230 int scalarsPerPos, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000231 {SkASSERT(0);}
232 virtual void drawTextOnPath(const SkDraw&, const void* text,
233 size_t len, const SkPath& path,
234 const SkMatrix* matrix,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000235 const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000236 {SkASSERT(0);}
junov@chromium.org88e29142012-08-07 16:48:22 +0000237 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode,
238 int vertexCount, const SkPoint verts[],
239 const SkPoint texs[], const SkColor colors[],
240 SkXfermode* xmode, const uint16_t indices[],
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000241 int indexCount, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000242 {SkASSERT(0);}
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000243 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000244 const SkPaint&) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000245 {SkASSERT(0);}
reed@google.combd246e22014-02-14 14:41:28 +0000246
247 virtual void lockPixels() SK_OVERRIDE { SkASSERT(0); }
248 virtual void unlockPixels() SK_OVERRIDE { SkASSERT(0); }
249
250 virtual bool allowImageFilter(const SkImageFilter*) SK_OVERRIDE {
251 return false;
252 }
253 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE {
254 return false;
255 }
256 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
257 const SkMatrix&, SkBitmap*, SkIPoint*) SK_OVERRIDE {
258 return false;
259 }
260
junov@chromium.org88e29142012-08-07 16:48:22 +0000261private:
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000262 virtual void flush() SK_OVERRIDE;
reed@google.combd246e22014-02-14 14:41:28 +0000263 virtual void replaceBitmapBackendForRasterSurface(const SkBitmap&) SK_OVERRIDE {}
junov@chromium.org88e29142012-08-07 16:48:22 +0000264
junov@chromium.org88e29142012-08-07 16:48:22 +0000265 void beginRecording();
junov@chromium.org67d74222013-04-12 13:33:01 +0000266 void init();
junov@chromium.org44324fa2013-08-02 15:36:02 +0000267 void aboutToDraw();
268 void prepareForImmediatePixelWrite();
junov@chromium.org88e29142012-08-07 16:48:22 +0000269
270 DeferredPipeController fPipeController;
271 SkGPipeWriter fPipeWriter;
junov@chromium.org88e29142012-08-07 16:48:22 +0000272 SkCanvas* fImmediateCanvas;
273 SkCanvas* fRecordingCanvas;
junov@chromium.org67d74222013-04-12 13:33:01 +0000274 SkSurface* fSurface;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000275 SkDeferredCanvas::NotificationClient* fNotificationClient;
junov@chromium.org88e29142012-08-07 16:48:22 +0000276 bool fFreshFrame;
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000277 bool fCanDiscardCanvasContents;
junov@chromium.org88e29142012-08-07 16:48:22 +0000278 size_t fMaxRecordingStorageBytes;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000279 size_t fPreviousStorageAllocated;
sugoi@google.com7775fd52012-11-21 15:47:04 +0000280 size_t fBitmapSizeThreshold;
junov@chromium.org88e29142012-08-07 16:48:22 +0000281};
282
reed@google.combd246e22014-02-14 14:41:28 +0000283DeferredDevice::DeferredDevice(SkSurface* surface) {
junov@chromium.org67d74222013-04-12 13:33:01 +0000284 fMaxRecordingStorageBytes = kDefaultMaxRecordingStorageBytes;
285 fNotificationClient = NULL;
junov@chromium.org7070f762013-05-24 17:13:00 +0000286 fImmediateCanvas = NULL;
287 fSurface = NULL;
288 this->setSurface(surface);
junov@chromium.org67d74222013-04-12 13:33:01 +0000289 this->init();
290}
291
junov@chromium.org7070f762013-05-24 17:13:00 +0000292void DeferredDevice::setSurface(SkSurface* surface) {
293 SkRefCnt_SafeAssign(fImmediateCanvas, surface->getCanvas());
294 SkRefCnt_SafeAssign(fSurface, surface);
295 fPipeController.setPlaybackCanvas(fImmediateCanvas);
296}
297
junov@chromium.org67d74222013-04-12 13:33:01 +0000298void DeferredDevice::init() {
299 fRecordingCanvas = NULL;
300 fFreshFrame = true;
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000301 fCanDiscardCanvasContents = false;
junov@chromium.org67d74222013-04-12 13:33:01 +0000302 fPreviousStorageAllocated = 0;
303 fBitmapSizeThreshold = kDeferredCanvasBitmapSizeThreshold;
304 fMaxRecordingStorageBytes = kDefaultMaxRecordingStorageBytes;
305 fNotificationClient = NULL;
junov@chromium.org88e29142012-08-07 16:48:22 +0000306 this->beginRecording();
307}
308
309DeferredDevice::~DeferredDevice() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000310 this->flushPendingCommands(kSilent_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000311 SkSafeUnref(fImmediateCanvas);
junov@chromium.org67d74222013-04-12 13:33:01 +0000312 SkSafeUnref(fSurface);
junov@chromium.org88e29142012-08-07 16:48:22 +0000313}
314
315void DeferredDevice::setMaxRecordingStorage(size_t maxStorage) {
316 fMaxRecordingStorageBytes = maxStorage;
317 this->recordingCanvas(); // Accessing the recording canvas applies the new limit.
318}
319
junov@chromium.org88e29142012-08-07 16:48:22 +0000320void DeferredDevice::beginRecording() {
junov@chromium.orga8db8fe2012-08-15 19:49:22 +0000321 SkASSERT(NULL == fRecordingCanvas);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000322 fRecordingCanvas = fPipeWriter.startRecording(&fPipeController, 0,
junov@chromium.org9becf002013-04-15 18:15:23 +0000323 immediateDevice()->width(), immediateDevice()->height());
junov@chromium.org88e29142012-08-07 16:48:22 +0000324}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000325
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000326void DeferredDevice::setNotificationClient(
327 SkDeferredCanvas::NotificationClient* notificationClient) {
junov@chromium.org52805482012-08-20 14:25:04 +0000328 fNotificationClient = notificationClient;
junov@chromium.org88e29142012-08-07 16:48:22 +0000329}
330
junov@chromium.org0a67f962012-09-19 22:48:34 +0000331void DeferredDevice::skipPendingCommands() {
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000332 if (!fRecordingCanvas->isDrawingToLayer()) {
333 fCanDiscardCanvasContents = true;
334 if (fPipeController.hasPendingCommands()) {
335 fFreshFrame = true;
336 flushPendingCommands(kSilent_PlaybackMode);
337 if (fNotificationClient) {
338 fNotificationClient->skippedPendingDrawCommands();
339 }
junov@google.com52a00ca2012-10-01 15:27:14 +0000340 }
junov@chromium.org88e29142012-08-07 16:48:22 +0000341 }
342}
343
344bool DeferredDevice::isFreshFrame() {
345 bool ret = fFreshFrame;
346 fFreshFrame = false;
347 return ret;
348}
349
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000350bool DeferredDevice::hasPendingCommands() {
351 return fPipeController.hasPendingCommands();
352}
353
junov@chromium.org44324fa2013-08-02 15:36:02 +0000354void DeferredDevice::aboutToDraw()
355{
356 if (NULL != fNotificationClient) {
357 fNotificationClient->prepareForDraw();
358 }
359 if (fCanDiscardCanvasContents) {
360 if (NULL != fSurface) {
361 fSurface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
362 }
skia.committer@gmail.comea4b7972013-08-06 07:01:27 +0000363 fCanDiscardCanvasContents = false;
junov@chromium.org44324fa2013-08-02 15:36:02 +0000364 }
365}
366
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000367void DeferredDevice::flushPendingCommands(PlaybackMode playbackMode) {
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000368 if (!fPipeController.hasPendingCommands()) {
junov@chromium.org88e29142012-08-07 16:48:22 +0000369 return;
370 }
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000371 if (playbackMode == kNormal_PlaybackMode) {
junov@chromium.org44324fa2013-08-02 15:36:02 +0000372 aboutToDraw();
junov@chromium.org88e29142012-08-07 16:48:22 +0000373 }
junov@chromium.org88e29142012-08-07 16:48:22 +0000374 fPipeWriter.flushRecording(true);
junov@chromium.orgd4501a02012-10-30 19:05:17 +0000375 fPipeController.playback(kSilent_PlaybackMode == playbackMode);
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000376 if (playbackMode == kNormal_PlaybackMode && fNotificationClient) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000377 fNotificationClient->flushedDrawCommands();
378 }
379 fPreviousStorageAllocated = storageAllocatedForRecording();
junov@chromium.org88e29142012-08-07 16:48:22 +0000380}
381
382void DeferredDevice::flush() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000383 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000384 fImmediateCanvas->flush();
385}
386
387size_t DeferredDevice::freeMemoryIfPossible(size_t bytesToFree) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000388 size_t val = fPipeWriter.freeMemoryIfPossible(bytesToFree);
389 fPreviousStorageAllocated = storageAllocatedForRecording();
390 return val;
junov@chromium.org88e29142012-08-07 16:48:22 +0000391}
392
sugoi@google.com7775fd52012-11-21 15:47:04 +0000393size_t DeferredDevice::getBitmapSizeThreshold() const {
394 return fBitmapSizeThreshold;
395}
396
397void DeferredDevice::setBitmapSizeThreshold(size_t sizeThreshold) {
398 fBitmapSizeThreshold = sizeThreshold;
399}
400
junov@chromium.org88e29142012-08-07 16:48:22 +0000401size_t DeferredDevice::storageAllocatedForRecording() const {
402 return (fPipeController.storageAllocatedForRecording()
403 + fPipeWriter.storageAllocatedForRecording());
404}
405
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000406void DeferredDevice::recordedDrawCommand() {
junov@chromium.org88e29142012-08-07 16:48:22 +0000407 size_t storageAllocated = this->storageAllocatedForRecording();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000408
junov@chromium.org88e29142012-08-07 16:48:22 +0000409 if (storageAllocated > fMaxRecordingStorageBytes) {
410 // First, attempt to reduce cache without flushing
411 size_t tryFree = storageAllocated - fMaxRecordingStorageBytes;
412 if (this->freeMemoryIfPossible(tryFree) < tryFree) {
413 // Flush is necessary to free more space.
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000414 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000415 // Free as much as possible to avoid oscillating around fMaxRecordingStorageBytes
416 // which could cause a high flushing frequency.
bsalomon@google.com100abf42012-09-05 17:40:04 +0000417 this->freeMemoryIfPossible(~0U);
junov@chromium.org88e29142012-08-07 16:48:22 +0000418 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000419 storageAllocated = this->storageAllocatedForRecording();
junov@chromium.org88e29142012-08-07 16:48:22 +0000420 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000421
rmistry@google.comd6176b02012-08-23 18:14:13 +0000422 if (fNotificationClient &&
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000423 storageAllocated != fPreviousStorageAllocated) {
424 fPreviousStorageAllocated = storageAllocated;
425 fNotificationClient->storageAllocatedForRecordingChanged(storageAllocated);
426 }
427}
428
429SkCanvas* DeferredDevice::recordingCanvas() {
junov@chromium.org88e29142012-08-07 16:48:22 +0000430 return fRecordingCanvas;
431}
432
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000433SkImage* DeferredDevice::newImageSnapshot() {
junov@chromium.org67d74222013-04-12 13:33:01 +0000434 this->flush();
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000435 return fSurface ? fSurface->newImageSnapshot() : NULL;
junov@chromium.org67d74222013-04-12 13:33:01 +0000436}
437
rmistry@google.comd6176b02012-08-23 18:14:13 +0000438uint32_t DeferredDevice::getDeviceCapabilities() {
junov@chromium.org9becf002013-04-15 18:15:23 +0000439 return immediateDevice()->getDeviceCapabilities();
junov@chromium.org88e29142012-08-07 16:48:22 +0000440}
441
rmistry@google.comd6176b02012-08-23 18:14:13 +0000442int DeferredDevice::width() const {
junov@chromium.org9becf002013-04-15 18:15:23 +0000443 return immediateDevice()->width();
junov@chromium.org88e29142012-08-07 16:48:22 +0000444}
445
446int DeferredDevice::height() const {
junov@chromium.org9becf002013-04-15 18:15:23 +0000447 return immediateDevice()->height();
junov@chromium.org88e29142012-08-07 16:48:22 +0000448}
449
reed@google.combd246e22014-02-14 14:41:28 +0000450SkBitmap::Config DeferredDevice::config() const {
451 return immediateDevice()->config();
452}
453
454bool DeferredDevice::isOpaque() const {
455 return immediateDevice()->isOpaque();
456}
457
458SkImageInfo DeferredDevice::imageInfo() const {
459 return immediateDevice()->imageInfo();
460}
461
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000462GrRenderTarget* DeferredDevice::accessRenderTarget() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000463 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org9becf002013-04-15 18:15:23 +0000464 return immediateDevice()->accessRenderTarget();
junov@chromium.org88e29142012-08-07 16:48:22 +0000465}
466
junov@chromium.org44324fa2013-08-02 15:36:02 +0000467void DeferredDevice::prepareForImmediatePixelWrite() {
468 // The purpose of the following code is to make sure commands are flushed, that
469 // aboutToDraw() is called and that notifyContentWillChange is called, without
470 // calling anything redundantly.
471 if (fPipeController.hasPendingCommands()) {
472 this->flushPendingCommands(kNormal_PlaybackMode);
473 } else {
474 bool mustNotifyDirectly = !fCanDiscardCanvasContents;
475 this->aboutToDraw();
476 if (mustNotifyDirectly) {
477 fSurface->notifyContentWillChange(SkSurface::kRetain_ContentChangeMode);
478 }
479 }
480
481 fImmediateCanvas->flush();
482}
483
junov@chromium.org88e29142012-08-07 16:48:22 +0000484void DeferredDevice::writePixels(const SkBitmap& bitmap,
485 int x, int y, SkCanvas::Config8888 config8888) {
486
487 if (x <= 0 && y <= 0 && (x + bitmap.width()) >= width() &&
488 (y + bitmap.height()) >= height()) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000489 this->skipPendingCommands();
junov@chromium.org88e29142012-08-07 16:48:22 +0000490 }
491
492 if (SkBitmap::kARGB_8888_Config == bitmap.config() &&
493 SkCanvas::kNative_Premul_Config8888 != config8888 &&
494 kPMColorAlias != config8888) {
495 //Special case config: no deferral
junov@chromium.org44324fa2013-08-02 15:36:02 +0000496 prepareForImmediatePixelWrite();
junov@chromium.org9becf002013-04-15 18:15:23 +0000497 immediateDevice()->writePixels(bitmap, x, y, config8888);
junov@chromium.org88e29142012-08-07 16:48:22 +0000498 return;
499 }
500
501 SkPaint paint;
502 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
sugoi@google.com7775fd52012-11-21 15:47:04 +0000503 if (shouldDrawImmediately(&bitmap, NULL, getBitmapSizeThreshold())) {
junov@chromium.org44324fa2013-08-02 15:36:02 +0000504 prepareForImmediatePixelWrite();
junov@chromium.org88e29142012-08-07 16:48:22 +0000505 fImmediateCanvas->drawSprite(bitmap, x, y, &paint);
506 } else {
507 this->recordingCanvas()->drawSprite(bitmap, x, y, &paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000508 this->recordedDrawCommand();
509
junov@chromium.org88e29142012-08-07 16:48:22 +0000510 }
511}
512
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000513const SkBitmap& DeferredDevice::onAccessBitmap() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000514 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org9becf002013-04-15 18:15:23 +0000515 return immediateDevice()->accessBitmap(false);
junov@chromium.org88e29142012-08-07 16:48:22 +0000516}
517
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000518SkBaseDevice* DeferredDevice::onCreateCompatibleDevice(
junov@chromium.org88e29142012-08-07 16:48:22 +0000519 SkBitmap::Config config, int width, int height, bool isOpaque,
520 Usage usage) {
521
522 // Save layer usage not supported, and not required by SkDeferredCanvas.
523 SkASSERT(usage != kSaveLayer_Usage);
524 // Create a compatible non-deferred device.
junov@chromium.orgb1c725a2013-05-21 20:16:17 +0000525 // We do not create a deferred device because we know the new device
526 // will not be used with a deferred canvas (there is no API for that).
527 // And connecting a DeferredDevice to non-deferred canvas can result
528 // in unpredictable behavior.
529 return immediateDevice()->createCompatibleDevice(config, width, height, isOpaque);
junov@chromium.org88e29142012-08-07 16:48:22 +0000530}
531
reed@google.com76f10a32014-02-05 15:32:21 +0000532SkSurface* DeferredDevice::newSurface(const SkImageInfo& info) {
533 return this->immediateDevice()->newSurface(info);
534}
535
junov@chromium.org88e29142012-08-07 16:48:22 +0000536bool DeferredDevice::onReadPixels(
537 const SkBitmap& bitmap, int x, int y, SkCanvas::Config8888 config8888) {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000538 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000539 return fImmediateCanvas->readPixels(const_cast<SkBitmap*>(&bitmap),
540 x, y, config8888);
541}
542
sugoi@google.com7775fd52012-11-21 15:47:04 +0000543class AutoImmediateDrawIfNeeded {
544public:
545 AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkBitmap* bitmap,
546 const SkPaint* paint) {
547 this->init(canvas, bitmap, paint);
548 }
549
550 AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkPaint* paint) {
551 this->init(canvas, NULL, paint);
552 }
553
554 ~AutoImmediateDrawIfNeeded() {
555 if (fCanvas) {
556 fCanvas->setDeferredDrawing(true);
557 }
558 }
559private:
560 void init(SkDeferredCanvas& canvas, const SkBitmap* bitmap, const SkPaint* paint)
561 {
562 DeferredDevice* device = static_cast<DeferredDevice*>(canvas.getDevice());
563 if (canvas.isDeferredDrawing() && (NULL != device) &&
564 shouldDrawImmediately(bitmap, paint, device->getBitmapSizeThreshold())) {
565 canvas.setDeferredDrawing(false);
566 fCanvas = &canvas;
567 } else {
568 fCanvas = NULL;
569 }
570 }
571
572 SkDeferredCanvas* fCanvas;
573};
junov@chromium.org88e29142012-08-07 16:48:22 +0000574
junov@chromium.org66070a52013-05-28 17:39:08 +0000575SkDeferredCanvas* SkDeferredCanvas::Create(SkSurface* surface) {
576 SkAutoTUnref<DeferredDevice> deferredDevice(SkNEW_ARGS(DeferredDevice, (surface)));
577 return SkNEW_ARGS(SkDeferredCanvas, (deferredDevice));
578}
579
junov@chromium.org66070a52013-05-28 17:39:08 +0000580SkDeferredCanvas::SkDeferredCanvas(DeferredDevice* device) : SkCanvas (device) {
581 this->init();
582}
junov@chromium.org67d74222013-04-12 13:33:01 +0000583
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000584void SkDeferredCanvas::init() {
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000585 fDeferredDrawing = true; // On by default
junov@google.com4370aed2012-01-18 16:21:08 +0000586}
587
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000588void SkDeferredCanvas::setMaxRecordingStorage(size_t maxStorage) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000589 this->validate();
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000590 this->getDeferredDevice()->setMaxRecordingStorage(maxStorage);
591}
592
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000593size_t SkDeferredCanvas::storageAllocatedForRecording() const {
594 return this->getDeferredDevice()->storageAllocatedForRecording();
595}
596
597size_t SkDeferredCanvas::freeMemoryIfPossible(size_t bytesToFree) {
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000598 return this->getDeferredDevice()->freeMemoryIfPossible(bytesToFree);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000599}
600
sugoi@google.com7775fd52012-11-21 15:47:04 +0000601void SkDeferredCanvas::setBitmapSizeThreshold(size_t sizeThreshold) {
602 DeferredDevice* deferredDevice = this->getDeferredDevice();
603 SkASSERT(deferredDevice);
604 deferredDevice->setBitmapSizeThreshold(sizeThreshold);
605}
606
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000607void SkDeferredCanvas::recordedDrawCommand() {
608 if (fDeferredDrawing) {
609 this->getDeferredDevice()->recordedDrawCommand();
610 }
611}
612
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000613void SkDeferredCanvas::validate() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000614 SkASSERT(this->getDevice());
junov@google.com4370aed2012-01-18 16:21:08 +0000615}
616
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000617SkCanvas* SkDeferredCanvas::drawingCanvas() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000618 this->validate();
619 return fDeferredDrawing ? this->getDeferredDevice()->recordingCanvas() :
620 this->getDeferredDevice()->immediateCanvas();
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000621}
622
junov@chromium.org88e29142012-08-07 16:48:22 +0000623SkCanvas* SkDeferredCanvas::immediateCanvas() const {
624 this->validate();
625 return this->getDeferredDevice()->immediateCanvas();
626}
627
628DeferredDevice* SkDeferredCanvas::getDeferredDevice() const {
629 return static_cast<DeferredDevice*>(this->getDevice());
junov@google.com4370aed2012-01-18 16:21:08 +0000630}
631
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000632void SkDeferredCanvas::setDeferredDrawing(bool val) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000633 this->validate(); // Must set device before calling this method
junov@google.com4370aed2012-01-18 16:21:08 +0000634 if (val != fDeferredDrawing) {
635 if (fDeferredDrawing) {
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000636 // Going live.
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000637 this->getDeferredDevice()->flushPendingCommands(kNormal_PlaybackMode);
junov@google.com4370aed2012-01-18 16:21:08 +0000638 }
639 fDeferredDrawing = val;
640 }
641}
642
junov@chromium.org88e29142012-08-07 16:48:22 +0000643bool SkDeferredCanvas::isDeferredDrawing() const {
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +0000644 return fDeferredDrawing;
645}
646
junov@chromium.org88e29142012-08-07 16:48:22 +0000647bool SkDeferredCanvas::isFreshFrame() const {
648 return this->getDeferredDevice()->isFreshFrame();
649}
650
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000651bool SkDeferredCanvas::hasPendingCommands() const {
652 return this->getDeferredDevice()->hasPendingCommands();
653}
654
junov@chromium.orgfb103892012-09-20 19:35:43 +0000655void SkDeferredCanvas::silentFlush() {
656 if (fDeferredDrawing) {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000657 this->getDeferredDevice()->flushPendingCommands(kSilent_PlaybackMode);
junov@chromium.orgfb103892012-09-20 19:35:43 +0000658 }
659}
660
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000661SkDeferredCanvas::~SkDeferredCanvas() {
junov@google.com4370aed2012-01-18 16:21:08 +0000662}
663
junov@chromium.org7070f762013-05-24 17:13:00 +0000664SkSurface* SkDeferredCanvas::setSurface(SkSurface* surface) {
665 DeferredDevice* deferredDevice = this->getDeferredDevice();
junov@chromium.org66070a52013-05-28 17:39:08 +0000666 SkASSERT(NULL != deferredDevice);
667 // By swapping the surface into the existing device, we preserve
668 // all pending commands, which can help to seamlessly recover from
669 // a lost accelerated graphics context.
670 deferredDevice->setSurface(surface);
junov@chromium.org7070f762013-05-24 17:13:00 +0000671 return surface;
672}
673
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000674SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient(
675 NotificationClient* notificationClient) {
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000676
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000677 DeferredDevice* deferredDevice = this->getDeferredDevice();
junov@google.com4370aed2012-01-18 16:21:08 +0000678 SkASSERT(deferredDevice);
679 if (deferredDevice) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000680 deferredDevice->setNotificationClient(notificationClient);
junov@google.com4370aed2012-01-18 16:21:08 +0000681 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000682 return notificationClient;
junov@google.com4370aed2012-01-18 16:21:08 +0000683}
684
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000685SkImage* SkDeferredCanvas::newImageSnapshot() {
junov@chromium.org67d74222013-04-12 13:33:01 +0000686 DeferredDevice* deferredDevice = this->getDeferredDevice();
687 SkASSERT(deferredDevice);
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000688 return deferredDevice ? deferredDevice->newImageSnapshot() : NULL;
junov@chromium.org67d74222013-04-12 13:33:01 +0000689}
690
junov@google.com4370aed2012-01-18 16:21:08 +0000691bool SkDeferredCanvas::isFullFrame(const SkRect* rect,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000692 const SkPaint* paint) const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000693 SkCanvas* canvas = this->drawingCanvas();
694 SkISize canvasSize = this->getDeviceSize();
junov@google.com4370aed2012-01-18 16:21:08 +0000695 if (rect) {
696 if (!canvas->getTotalMatrix().rectStaysRect()) {
697 return false; // conservative
698 }
699
700 SkRect transformedRect;
701 canvas->getTotalMatrix().mapRect(&transformedRect, *rect);
702
703 if (paint) {
704 SkPaint::Style paintStyle = paint->getStyle();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000705 if (!(paintStyle == SkPaint::kFill_Style ||
junov@google.com4370aed2012-01-18 16:21:08 +0000706 paintStyle == SkPaint::kStrokeAndFill_Style)) {
707 return false;
708 }
709 if (paint->getMaskFilter() || paint->getLooper()
710 || paint->getPathEffect() || paint->getImageFilter()) {
711 return false; // conservative
712 }
713 }
714
715 // The following test holds with AA enabled, and is conservative
716 // by a 0.5 pixel margin with AA disabled
rmistry@google.comd6176b02012-08-23 18:14:13 +0000717 if (transformedRect.fLeft > SkIntToScalar(0) ||
718 transformedRect.fTop > SkIntToScalar(0) ||
junov@chromium.orgb1e218e2012-02-13 22:27:58 +0000719 transformedRect.fRight < SkIntToScalar(canvasSize.fWidth) ||
720 transformedRect.fBottom < SkIntToScalar(canvasSize.fHeight)) {
junov@google.com4370aed2012-01-18 16:21:08 +0000721 return false;
722 }
723 }
724
junov@chromium.org8f0ca062012-12-13 16:30:39 +0000725 return this->getClipStack()->quickContains(SkRect::MakeXYWH(0, 0,
726 SkIntToScalar(canvasSize.fWidth), SkIntToScalar(canvasSize.fHeight)));
junov@google.com4370aed2012-01-18 16:21:08 +0000727}
728
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000729int SkDeferredCanvas::save(SaveFlags flags) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000730 this->drawingCanvas()->save(flags);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000731 int val = this->INHERITED::save(flags);
732 this->recordedDrawCommand();
733
734 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000735}
736
737int SkDeferredCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000738 SaveFlags flags) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000739 this->drawingCanvas()->saveLayer(bounds, paint, flags);
junov@chromium.orga907ac32012-02-24 21:54:07 +0000740 int count = this->INHERITED::save(flags);
741 this->clipRectBounds(bounds, flags, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000742 this->recordedDrawCommand();
743
junov@chromium.orga907ac32012-02-24 21:54:07 +0000744 return count;
junov@google.com4370aed2012-01-18 16:21:08 +0000745}
746
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000747void SkDeferredCanvas::restore() {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000748 this->drawingCanvas()->restore();
junov@chromium.orga907ac32012-02-24 21:54:07 +0000749 this->INHERITED::restore();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000750 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000751}
752
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000753bool SkDeferredCanvas::isDrawingToLayer() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000754 return this->drawingCanvas()->isDrawingToLayer();
junov@google.com4370aed2012-01-18 16:21:08 +0000755}
756
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000757bool SkDeferredCanvas::translate(SkScalar dx, SkScalar dy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000758 this->drawingCanvas()->translate(dx, dy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000759 bool val = this->INHERITED::translate(dx, dy);
760 this->recordedDrawCommand();
761 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000762}
763
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000764bool SkDeferredCanvas::scale(SkScalar sx, SkScalar sy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000765 this->drawingCanvas()->scale(sx, sy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000766 bool val = this->INHERITED::scale(sx, sy);
767 this->recordedDrawCommand();
768 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000769}
770
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000771bool SkDeferredCanvas::rotate(SkScalar degrees) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000772 this->drawingCanvas()->rotate(degrees);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000773 bool val = this->INHERITED::rotate(degrees);
774 this->recordedDrawCommand();
775 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000776}
777
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000778bool SkDeferredCanvas::skew(SkScalar sx, SkScalar sy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000779 this->drawingCanvas()->skew(sx, sy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000780 bool val = this->INHERITED::skew(sx, sy);
781 this->recordedDrawCommand();
782 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000783}
784
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000785bool SkDeferredCanvas::concat(const SkMatrix& matrix) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000786 this->drawingCanvas()->concat(matrix);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000787 bool val = this->INHERITED::concat(matrix);
788 this->recordedDrawCommand();
789 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000790}
791
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000792void SkDeferredCanvas::setMatrix(const SkMatrix& matrix) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000793 this->drawingCanvas()->setMatrix(matrix);
junov@chromium.orga907ac32012-02-24 21:54:07 +0000794 this->INHERITED::setMatrix(matrix);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000795 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000796}
797
798bool SkDeferredCanvas::clipRect(const SkRect& rect,
799 SkRegion::Op op,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000800 bool doAntiAlias) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000801 this->drawingCanvas()->clipRect(rect, op, doAntiAlias);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000802 bool val = this->INHERITED::clipRect(rect, op, doAntiAlias);
803 this->recordedDrawCommand();
804 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000805}
806
reed@google.com4ed0fb72012-12-12 20:48:18 +0000807bool SkDeferredCanvas::clipRRect(const SkRRect& rrect,
808 SkRegion::Op op,
809 bool doAntiAlias) {
810 this->drawingCanvas()->clipRRect(rrect, op, doAntiAlias);
811 bool val = this->INHERITED::clipRRect(rrect, op, doAntiAlias);
812 this->recordedDrawCommand();
813 return val;
814}
815
junov@google.com4370aed2012-01-18 16:21:08 +0000816bool SkDeferredCanvas::clipPath(const SkPath& path,
817 SkRegion::Op op,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000818 bool doAntiAlias) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000819 this->drawingCanvas()->clipPath(path, op, doAntiAlias);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000820 bool val = this->INHERITED::clipPath(path, op, doAntiAlias);
821 this->recordedDrawCommand();
822 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000823}
824
825bool SkDeferredCanvas::clipRegion(const SkRegion& deviceRgn,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000826 SkRegion::Op op) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000827 this->drawingCanvas()->clipRegion(deviceRgn, op);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000828 bool val = this->INHERITED::clipRegion(deviceRgn, op);
829 this->recordedDrawCommand();
830 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000831}
832
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000833void SkDeferredCanvas::clear(SkColor color) {
junov@google.com4370aed2012-01-18 16:21:08 +0000834 // purge pending commands
835 if (fDeferredDrawing) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000836 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000837 }
838
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000839 this->drawingCanvas()->clear(color);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000840 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000841}
842
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000843void SkDeferredCanvas::drawPaint(const SkPaint& paint) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000844 if (fDeferredDrawing && this->isFullFrame(NULL, &paint) &&
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000845 isPaintOpaque(&paint)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000846 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000847 }
junov@chromium.org10f7f972012-07-31 21:01:51 +0000848 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000849 this->drawingCanvas()->drawPaint(paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000850 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000851}
852
853void SkDeferredCanvas::drawPoints(PointMode mode, size_t count,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000854 const SkPoint pts[], const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000855 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000856 this->drawingCanvas()->drawPoints(mode, count, pts, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000857 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000858}
859
reed@google.com4ed0fb72012-12-12 20:48:18 +0000860void SkDeferredCanvas::drawOval(const SkRect& rect, const SkPaint& paint) {
861 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
862 this->drawingCanvas()->drawOval(rect, paint);
863 this->recordedDrawCommand();
864}
865
bsalomon@google.com7ce564c2013-10-22 16:54:15 +0000866void SkDeferredCanvas::drawRect(const SkRect& rect, const SkPaint& paint) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000867 if (fDeferredDrawing && this->isFullFrame(&rect, &paint) &&
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000868 isPaintOpaque(&paint)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000869 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000870 }
skia.committer@gmail.com306ab9d2012-12-13 02:01:33 +0000871
junov@chromium.org10f7f972012-07-31 21:01:51 +0000872 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000873 this->drawingCanvas()->drawRect(rect, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000874 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000875}
876
reed@google.com4ed0fb72012-12-12 20:48:18 +0000877void SkDeferredCanvas::drawRRect(const SkRRect& rrect, const SkPaint& paint) {
878 if (rrect.isRect()) {
879 this->SkDeferredCanvas::drawRect(rrect.getBounds(), paint);
880 } else if (rrect.isOval()) {
881 this->SkDeferredCanvas::drawOval(rrect.getBounds(), paint);
882 } else {
883 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
884 this->drawingCanvas()->drawRRect(rrect, paint);
885 this->recordedDrawCommand();
886 }
887}
888
bsalomon@google.com7ce564c2013-10-22 16:54:15 +0000889void SkDeferredCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000890 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000891 this->drawingCanvas()->drawPath(path, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000892 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000893}
894
895void SkDeferredCanvas::drawBitmap(const SkBitmap& bitmap, SkScalar left,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000896 SkScalar top, const SkPaint* paint) {
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000897 SkRect bitmapRect = SkRect::MakeXYWH(left, top,
898 SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
rmistry@google.comd6176b02012-08-23 18:14:13 +0000899 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000900 this->isFullFrame(&bitmapRect, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000901 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000902 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000903 }
904
junov@chromium.org10f7f972012-07-31 21:01:51 +0000905 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000906 this->drawingCanvas()->drawBitmap(bitmap, left, top, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000907 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000908}
909
reed@google.com71121732012-09-18 15:14:33 +0000910void SkDeferredCanvas::drawBitmapRectToRect(const SkBitmap& bitmap,
911 const SkRect* src,
912 const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000913 const SkPaint* paint,
914 DrawBitmapRectFlags flags) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000915 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000916 this->isFullFrame(&dst, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000917 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000918 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000919 }
920
junov@chromium.org10f7f972012-07-31 21:01:51 +0000921 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000922 this->drawingCanvas()->drawBitmapRectToRect(bitmap, src, dst, paint, flags);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000923 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000924}
925
926
927void SkDeferredCanvas::drawBitmapMatrix(const SkBitmap& bitmap,
928 const SkMatrix& m,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000929 const SkPaint* paint) {
junov@google.com4370aed2012-01-18 16:21:08 +0000930 // TODO: reset recording canvas if paint+bitmap is opaque and clip rect
931 // covers canvas entirely and transformed bitmap covers canvas entirely
junov@chromium.org10f7f972012-07-31 21:01:51 +0000932 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000933 this->drawingCanvas()->drawBitmapMatrix(bitmap, m, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000934 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000935}
936
937void SkDeferredCanvas::drawBitmapNine(const SkBitmap& bitmap,
938 const SkIRect& center, const SkRect& dst,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000939 const SkPaint* paint) {
junov@google.com4370aed2012-01-18 16:21:08 +0000940 // TODO: reset recording canvas if paint+bitmap is opaque and clip rect
941 // covers canvas entirely and dst covers canvas entirely
junov@chromium.org10f7f972012-07-31 21:01:51 +0000942 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000943 this->drawingCanvas()->drawBitmapNine(bitmap, center, dst, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000944 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000945}
946
947void SkDeferredCanvas::drawSprite(const SkBitmap& bitmap, int left, int top,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000948 const SkPaint* paint) {
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000949 SkRect bitmapRect = SkRect::MakeXYWH(
950 SkIntToScalar(left),
rmistry@google.comd6176b02012-08-23 18:14:13 +0000951 SkIntToScalar(top),
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000952 SkIntToScalar(bitmap.width()),
953 SkIntToScalar(bitmap.height()));
rmistry@google.comd6176b02012-08-23 18:14:13 +0000954 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000955 this->isFullFrame(&bitmapRect, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000956 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000957 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000958 }
959
junov@chromium.org10f7f972012-07-31 21:01:51 +0000960 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000961 this->drawingCanvas()->drawSprite(bitmap, left, top, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000962 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000963}
964
965void SkDeferredCanvas::drawText(const void* text, size_t byteLength,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000966 SkScalar x, SkScalar y, const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000967 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000968 this->drawingCanvas()->drawText(text, byteLength, x, y, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000969 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000970}
971
972void SkDeferredCanvas::drawPosText(const void* text, size_t byteLength,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000973 const SkPoint pos[], const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000974 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000975 this->drawingCanvas()->drawPosText(text, byteLength, pos, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000976 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000977}
978
979void SkDeferredCanvas::drawPosTextH(const void* text, size_t byteLength,
980 const SkScalar xpos[], SkScalar constY,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000981 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000982 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000983 this->drawingCanvas()->drawPosTextH(text, byteLength, xpos, constY, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000984 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000985}
986
987void SkDeferredCanvas::drawTextOnPath(const void* text, size_t byteLength,
988 const SkPath& path,
989 const SkMatrix* matrix,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000990 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000991 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000992 this->drawingCanvas()->drawTextOnPath(text, byteLength, path, matrix, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000993 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000994}
995
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000996void SkDeferredCanvas::drawPicture(SkPicture& picture) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000997 this->drawingCanvas()->drawPicture(picture);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000998 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000999}
1000
1001void SkDeferredCanvas::drawVertices(VertexMode vmode, int vertexCount,
1002 const SkPoint vertices[],
1003 const SkPoint texs[],
1004 const SkColor colors[], SkXfermode* xmode,
1005 const uint16_t indices[], int indexCount,
junov@chromium.orgc16ca922012-02-24 22:06:27 +00001006 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +00001007 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +00001008 this->drawingCanvas()->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode,
1009 indices, indexCount, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +00001010 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +00001011}
1012
junov@chromium.orgc16ca922012-02-24 22:06:27 +00001013SkBounder* SkDeferredCanvas::setBounder(SkBounder* bounder) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +00001014 this->drawingCanvas()->setBounder(bounder);
junov@chromium.org9ed02b92012-08-14 13:36:26 +00001015 this->INHERITED::setBounder(bounder);
1016 this->recordedDrawCommand();
1017 return bounder;
junov@google.com4370aed2012-01-18 16:21:08 +00001018}
1019
junov@chromium.orgc16ca922012-02-24 22:06:27 +00001020SkDrawFilter* SkDeferredCanvas::setDrawFilter(SkDrawFilter* filter) {
rmistry@google.comd6176b02012-08-23 18:14:13 +00001021 this->drawingCanvas()->setDrawFilter(filter);
junov@chromium.org9ed02b92012-08-14 13:36:26 +00001022 this->INHERITED::setDrawFilter(filter);
1023 this->recordedDrawCommand();
rmistry@google.comd6176b02012-08-23 18:14:13 +00001024 return filter;
junov@google.com4370aed2012-01-18 16:21:08 +00001025}
1026
1027SkCanvas* SkDeferredCanvas::canvasForDrawIter() {
junov@chromium.org9060c9b2012-08-07 15:14:01 +00001028 return this->drawingCanvas();
junov@google.com4370aed2012-01-18 16:21:08 +00001029}