blob: efc65463b52181a75aee7c854f22b0893e37670d [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//-----------------------------------------------------------------------------
scroggo@google.comcac8d012013-11-12 17:10:02 +0000140// FIXME: Derive from SkBaseDevice.
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000141class DeferredDevice : public SkBitmapDevice {
junov@chromium.org88e29142012-08-07 16:48:22 +0000142public:
junov@chromium.org67d74222013-04-12 13:33:01 +0000143 explicit DeferredDevice(SkSurface* surface);
junov@chromium.org88e29142012-08-07 16:48:22 +0000144 ~DeferredDevice();
145
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000146 void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient);
junov@chromium.org88e29142012-08-07 16:48:22 +0000147 SkCanvas* recordingCanvas();
148 SkCanvas* immediateCanvas() const {return fImmediateCanvas;}
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000149 SkBaseDevice* immediateDevice() const {return fImmediateCanvas->getTopDevice();}
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000150 SkImage* newImageSnapshot();
junov@chromium.org7070f762013-05-24 17:13:00 +0000151 void setSurface(SkSurface* surface);
junov@chromium.org88e29142012-08-07 16:48:22 +0000152 bool isFreshFrame();
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000153 bool hasPendingCommands();
junov@chromium.org88e29142012-08-07 16:48:22 +0000154 size_t storageAllocatedForRecording() const;
155 size_t freeMemoryIfPossible(size_t bytesToFree);
sugoi@google.com7775fd52012-11-21 15:47:04 +0000156 size_t getBitmapSizeThreshold() const;
157 void setBitmapSizeThreshold(size_t sizeThreshold);
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000158 void flushPendingCommands(PlaybackMode);
junov@chromium.org0a67f962012-09-19 22:48:34 +0000159 void skipPendingCommands();
junov@chromium.org88e29142012-08-07 16:48:22 +0000160 void setMaxRecordingStorage(size_t);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000161 void recordedDrawCommand();
junov@chromium.org88e29142012-08-07 16:48:22 +0000162
163 virtual uint32_t getDeviceCapabilities() SK_OVERRIDE;
164 virtual int width() const SK_OVERRIDE;
165 virtual int height() const SK_OVERRIDE;
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000166 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
junov@chromium.org88e29142012-08-07 16:48:22 +0000167
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000168 virtual SkBaseDevice* onCreateCompatibleDevice(SkBitmap::Config config,
169 int width, int height,
170 bool isOpaque,
171 Usage usage) SK_OVERRIDE;
junov@chromium.org88e29142012-08-07 16:48:22 +0000172
173 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
174 SkCanvas::Config8888 config8888) SK_OVERRIDE;
175
reed@google.com76f10a32014-02-05 15:32:21 +0000176 virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE;
177
junov@chromium.org88e29142012-08-07 16:48:22 +0000178protected:
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000179 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
junov@chromium.org88e29142012-08-07 16:48:22 +0000180 virtual bool onReadPixels(const SkBitmap& bitmap,
181 int x, int y,
182 SkCanvas::Config8888 config8888) SK_OVERRIDE;
183
184 // The following methods are no-ops on a deferred device
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000185 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) SK_OVERRIDE {
186 return false;
187 }
junov@chromium.org88e29142012-08-07 16:48:22 +0000188
189 // None of the following drawing methods should ever get called on the
190 // deferred device
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000191 virtual void clear(SkColor color) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000192 {SkASSERT(0);}
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000193 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000194 {SkASSERT(0);}
195 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode,
196 size_t count, const SkPoint[],
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000197 const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000198 {SkASSERT(0);}
199 virtual void drawRect(const SkDraw&, const SkRect& r,
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);}
scroggo@google.comcac8d012013-11-12 17:10:02 +0000202 virtual void drawRRect(const SkDraw&, const SkRRect& rr,
203 const SkPaint& paint) SK_OVERRIDE
204 {SkASSERT(0);}
junov@chromium.org88e29142012-08-07 16:48:22 +0000205 virtual void drawPath(const SkDraw&, const SkPath& path,
206 const SkPaint& paint,
207 const SkMatrix* prePathMatrix = NULL,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000208 bool pathIsMutable = false) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000209 {SkASSERT(0);}
210 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000211 const SkMatrix& matrix, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000212 {SkASSERT(0);}
213 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000214 int x, int y, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000215 {SkASSERT(0);}
216 virtual void drawText(const SkDraw&, const void* text, size_t len,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000217 SkScalar x, SkScalar y, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000218 {SkASSERT(0);}
219 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
220 const SkScalar pos[], SkScalar constY,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000221 int scalarsPerPos, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000222 {SkASSERT(0);}
223 virtual void drawTextOnPath(const SkDraw&, const void* text,
224 size_t len, const SkPath& path,
225 const SkMatrix* matrix,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000226 const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000227 {SkASSERT(0);}
junov@chromium.org88e29142012-08-07 16:48:22 +0000228 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode,
229 int vertexCount, const SkPoint verts[],
230 const SkPoint texs[], const SkColor colors[],
231 SkXfermode* xmode, const uint16_t indices[],
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000232 int indexCount, const SkPaint& paint) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000233 {SkASSERT(0);}
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000234 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000235 const SkPaint&) SK_OVERRIDE
junov@chromium.org88e29142012-08-07 16:48:22 +0000236 {SkASSERT(0);}
237private:
commit-bot@chromium.org3e2ea252013-07-23 11:28:45 +0000238 virtual void flush() SK_OVERRIDE;
junov@chromium.org88e29142012-08-07 16:48:22 +0000239
junov@chromium.org88e29142012-08-07 16:48:22 +0000240 void beginRecording();
junov@chromium.org67d74222013-04-12 13:33:01 +0000241 void init();
junov@chromium.org44324fa2013-08-02 15:36:02 +0000242 void aboutToDraw();
243 void prepareForImmediatePixelWrite();
junov@chromium.org88e29142012-08-07 16:48:22 +0000244
245 DeferredPipeController fPipeController;
246 SkGPipeWriter fPipeWriter;
junov@chromium.org88e29142012-08-07 16:48:22 +0000247 SkCanvas* fImmediateCanvas;
248 SkCanvas* fRecordingCanvas;
junov@chromium.org67d74222013-04-12 13:33:01 +0000249 SkSurface* fSurface;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000250 SkDeferredCanvas::NotificationClient* fNotificationClient;
junov@chromium.org88e29142012-08-07 16:48:22 +0000251 bool fFreshFrame;
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000252 bool fCanDiscardCanvasContents;
junov@chromium.org88e29142012-08-07 16:48:22 +0000253 size_t fMaxRecordingStorageBytes;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000254 size_t fPreviousStorageAllocated;
sugoi@google.com7775fd52012-11-21 15:47:04 +0000255 size_t fBitmapSizeThreshold;
junov@chromium.org88e29142012-08-07 16:48:22 +0000256};
257
junov@chromium.org67d74222013-04-12 13:33:01 +0000258DeferredDevice::DeferredDevice(SkSurface* surface)
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000259 : SkBitmapDevice(SkBitmap::kNo_Config,
260 surface->getCanvas()->getDevice()->width(),
261 surface->getCanvas()->getDevice()->height(),
262 surface->getCanvas()->getDevice()->isOpaque(),
263 surface->getCanvas()->getDevice()->getDeviceProperties()) {
junov@chromium.org67d74222013-04-12 13:33:01 +0000264 fMaxRecordingStorageBytes = kDefaultMaxRecordingStorageBytes;
265 fNotificationClient = NULL;
junov@chromium.org7070f762013-05-24 17:13:00 +0000266 fImmediateCanvas = NULL;
267 fSurface = NULL;
268 this->setSurface(surface);
junov@chromium.org67d74222013-04-12 13:33:01 +0000269 this->init();
270}
271
junov@chromium.org7070f762013-05-24 17:13:00 +0000272void DeferredDevice::setSurface(SkSurface* surface) {
273 SkRefCnt_SafeAssign(fImmediateCanvas, surface->getCanvas());
274 SkRefCnt_SafeAssign(fSurface, surface);
275 fPipeController.setPlaybackCanvas(fImmediateCanvas);
276}
277
junov@chromium.org67d74222013-04-12 13:33:01 +0000278void DeferredDevice::init() {
279 fRecordingCanvas = NULL;
280 fFreshFrame = true;
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000281 fCanDiscardCanvasContents = false;
junov@chromium.org67d74222013-04-12 13:33:01 +0000282 fPreviousStorageAllocated = 0;
283 fBitmapSizeThreshold = kDeferredCanvasBitmapSizeThreshold;
284 fMaxRecordingStorageBytes = kDefaultMaxRecordingStorageBytes;
285 fNotificationClient = NULL;
junov@chromium.org88e29142012-08-07 16:48:22 +0000286 this->beginRecording();
287}
288
289DeferredDevice::~DeferredDevice() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000290 this->flushPendingCommands(kSilent_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000291 SkSafeUnref(fImmediateCanvas);
junov@chromium.org67d74222013-04-12 13:33:01 +0000292 SkSafeUnref(fSurface);
junov@chromium.org88e29142012-08-07 16:48:22 +0000293}
294
295void DeferredDevice::setMaxRecordingStorage(size_t maxStorage) {
296 fMaxRecordingStorageBytes = maxStorage;
297 this->recordingCanvas(); // Accessing the recording canvas applies the new limit.
298}
299
junov@chromium.org88e29142012-08-07 16:48:22 +0000300void DeferredDevice::beginRecording() {
junov@chromium.orga8db8fe2012-08-15 19:49:22 +0000301 SkASSERT(NULL == fRecordingCanvas);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000302 fRecordingCanvas = fPipeWriter.startRecording(&fPipeController, 0,
junov@chromium.org9becf002013-04-15 18:15:23 +0000303 immediateDevice()->width(), immediateDevice()->height());
junov@chromium.org88e29142012-08-07 16:48:22 +0000304}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000305
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000306void DeferredDevice::setNotificationClient(
307 SkDeferredCanvas::NotificationClient* notificationClient) {
junov@chromium.org52805482012-08-20 14:25:04 +0000308 fNotificationClient = notificationClient;
junov@chromium.org88e29142012-08-07 16:48:22 +0000309}
310
junov@chromium.org0a67f962012-09-19 22:48:34 +0000311void DeferredDevice::skipPendingCommands() {
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000312 if (!fRecordingCanvas->isDrawingToLayer()) {
313 fCanDiscardCanvasContents = true;
314 if (fPipeController.hasPendingCommands()) {
315 fFreshFrame = true;
316 flushPendingCommands(kSilent_PlaybackMode);
317 if (fNotificationClient) {
318 fNotificationClient->skippedPendingDrawCommands();
319 }
junov@google.com52a00ca2012-10-01 15:27:14 +0000320 }
junov@chromium.org88e29142012-08-07 16:48:22 +0000321 }
322}
323
324bool DeferredDevice::isFreshFrame() {
325 bool ret = fFreshFrame;
326 fFreshFrame = false;
327 return ret;
328}
329
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000330bool DeferredDevice::hasPendingCommands() {
331 return fPipeController.hasPendingCommands();
332}
333
junov@chromium.org44324fa2013-08-02 15:36:02 +0000334void DeferredDevice::aboutToDraw()
335{
336 if (NULL != fNotificationClient) {
337 fNotificationClient->prepareForDraw();
338 }
339 if (fCanDiscardCanvasContents) {
340 if (NULL != fSurface) {
341 fSurface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
342 }
skia.committer@gmail.comea4b7972013-08-06 07:01:27 +0000343 fCanDiscardCanvasContents = false;
junov@chromium.org44324fa2013-08-02 15:36:02 +0000344 }
345}
346
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000347void DeferredDevice::flushPendingCommands(PlaybackMode playbackMode) {
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000348 if (!fPipeController.hasPendingCommands()) {
junov@chromium.org88e29142012-08-07 16:48:22 +0000349 return;
350 }
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000351 if (playbackMode == kNormal_PlaybackMode) {
junov@chromium.org44324fa2013-08-02 15:36:02 +0000352 aboutToDraw();
junov@chromium.org88e29142012-08-07 16:48:22 +0000353 }
junov@chromium.org88e29142012-08-07 16:48:22 +0000354 fPipeWriter.flushRecording(true);
junov@chromium.orgd4501a02012-10-30 19:05:17 +0000355 fPipeController.playback(kSilent_PlaybackMode == playbackMode);
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000356 if (playbackMode == kNormal_PlaybackMode && fNotificationClient) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000357 fNotificationClient->flushedDrawCommands();
358 }
359 fPreviousStorageAllocated = storageAllocatedForRecording();
junov@chromium.org88e29142012-08-07 16:48:22 +0000360}
361
362void DeferredDevice::flush() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000363 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000364 fImmediateCanvas->flush();
365}
366
367size_t DeferredDevice::freeMemoryIfPossible(size_t bytesToFree) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000368 size_t val = fPipeWriter.freeMemoryIfPossible(bytesToFree);
369 fPreviousStorageAllocated = storageAllocatedForRecording();
370 return val;
junov@chromium.org88e29142012-08-07 16:48:22 +0000371}
372
sugoi@google.com7775fd52012-11-21 15:47:04 +0000373size_t DeferredDevice::getBitmapSizeThreshold() const {
374 return fBitmapSizeThreshold;
375}
376
377void DeferredDevice::setBitmapSizeThreshold(size_t sizeThreshold) {
378 fBitmapSizeThreshold = sizeThreshold;
379}
380
junov@chromium.org88e29142012-08-07 16:48:22 +0000381size_t DeferredDevice::storageAllocatedForRecording() const {
382 return (fPipeController.storageAllocatedForRecording()
383 + fPipeWriter.storageAllocatedForRecording());
384}
385
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000386void DeferredDevice::recordedDrawCommand() {
junov@chromium.org88e29142012-08-07 16:48:22 +0000387 size_t storageAllocated = this->storageAllocatedForRecording();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000388
junov@chromium.org88e29142012-08-07 16:48:22 +0000389 if (storageAllocated > fMaxRecordingStorageBytes) {
390 // First, attempt to reduce cache without flushing
391 size_t tryFree = storageAllocated - fMaxRecordingStorageBytes;
392 if (this->freeMemoryIfPossible(tryFree) < tryFree) {
393 // Flush is necessary to free more space.
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000394 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000395 // Free as much as possible to avoid oscillating around fMaxRecordingStorageBytes
396 // which could cause a high flushing frequency.
bsalomon@google.com100abf42012-09-05 17:40:04 +0000397 this->freeMemoryIfPossible(~0U);
junov@chromium.org88e29142012-08-07 16:48:22 +0000398 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000399 storageAllocated = this->storageAllocatedForRecording();
junov@chromium.org88e29142012-08-07 16:48:22 +0000400 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000401
rmistry@google.comd6176b02012-08-23 18:14:13 +0000402 if (fNotificationClient &&
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000403 storageAllocated != fPreviousStorageAllocated) {
404 fPreviousStorageAllocated = storageAllocated;
405 fNotificationClient->storageAllocatedForRecordingChanged(storageAllocated);
406 }
407}
408
409SkCanvas* DeferredDevice::recordingCanvas() {
junov@chromium.org88e29142012-08-07 16:48:22 +0000410 return fRecordingCanvas;
411}
412
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000413SkImage* DeferredDevice::newImageSnapshot() {
junov@chromium.org67d74222013-04-12 13:33:01 +0000414 this->flush();
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000415 return fSurface ? fSurface->newImageSnapshot() : NULL;
junov@chromium.org67d74222013-04-12 13:33:01 +0000416}
417
rmistry@google.comd6176b02012-08-23 18:14:13 +0000418uint32_t DeferredDevice::getDeviceCapabilities() {
junov@chromium.org9becf002013-04-15 18:15:23 +0000419 return immediateDevice()->getDeviceCapabilities();
junov@chromium.org88e29142012-08-07 16:48:22 +0000420}
421
rmistry@google.comd6176b02012-08-23 18:14:13 +0000422int DeferredDevice::width() const {
junov@chromium.org9becf002013-04-15 18:15:23 +0000423 return immediateDevice()->width();
junov@chromium.org88e29142012-08-07 16:48:22 +0000424}
425
426int DeferredDevice::height() const {
junov@chromium.org9becf002013-04-15 18:15:23 +0000427 return immediateDevice()->height();
junov@chromium.org88e29142012-08-07 16:48:22 +0000428}
429
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000430GrRenderTarget* DeferredDevice::accessRenderTarget() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000431 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org9becf002013-04-15 18:15:23 +0000432 return immediateDevice()->accessRenderTarget();
junov@chromium.org88e29142012-08-07 16:48:22 +0000433}
434
junov@chromium.org44324fa2013-08-02 15:36:02 +0000435void DeferredDevice::prepareForImmediatePixelWrite() {
436 // The purpose of the following code is to make sure commands are flushed, that
437 // aboutToDraw() is called and that notifyContentWillChange is called, without
438 // calling anything redundantly.
439 if (fPipeController.hasPendingCommands()) {
440 this->flushPendingCommands(kNormal_PlaybackMode);
441 } else {
442 bool mustNotifyDirectly = !fCanDiscardCanvasContents;
443 this->aboutToDraw();
444 if (mustNotifyDirectly) {
445 fSurface->notifyContentWillChange(SkSurface::kRetain_ContentChangeMode);
446 }
447 }
448
449 fImmediateCanvas->flush();
450}
451
junov@chromium.org88e29142012-08-07 16:48:22 +0000452void DeferredDevice::writePixels(const SkBitmap& bitmap,
453 int x, int y, SkCanvas::Config8888 config8888) {
454
455 if (x <= 0 && y <= 0 && (x + bitmap.width()) >= width() &&
456 (y + bitmap.height()) >= height()) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000457 this->skipPendingCommands();
junov@chromium.org88e29142012-08-07 16:48:22 +0000458 }
459
460 if (SkBitmap::kARGB_8888_Config == bitmap.config() &&
461 SkCanvas::kNative_Premul_Config8888 != config8888 &&
462 kPMColorAlias != config8888) {
463 //Special case config: no deferral
junov@chromium.org44324fa2013-08-02 15:36:02 +0000464 prepareForImmediatePixelWrite();
junov@chromium.org9becf002013-04-15 18:15:23 +0000465 immediateDevice()->writePixels(bitmap, x, y, config8888);
junov@chromium.org88e29142012-08-07 16:48:22 +0000466 return;
467 }
468
469 SkPaint paint;
470 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
sugoi@google.com7775fd52012-11-21 15:47:04 +0000471 if (shouldDrawImmediately(&bitmap, NULL, getBitmapSizeThreshold())) {
junov@chromium.org44324fa2013-08-02 15:36:02 +0000472 prepareForImmediatePixelWrite();
junov@chromium.org88e29142012-08-07 16:48:22 +0000473 fImmediateCanvas->drawSprite(bitmap, x, y, &paint);
474 } else {
475 this->recordingCanvas()->drawSprite(bitmap, x, y, &paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000476 this->recordedDrawCommand();
477
junov@chromium.org88e29142012-08-07 16:48:22 +0000478 }
479}
480
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000481const SkBitmap& DeferredDevice::onAccessBitmap() {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000482 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org9becf002013-04-15 18:15:23 +0000483 return immediateDevice()->accessBitmap(false);
junov@chromium.org88e29142012-08-07 16:48:22 +0000484}
485
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000486SkBaseDevice* DeferredDevice::onCreateCompatibleDevice(
junov@chromium.org88e29142012-08-07 16:48:22 +0000487 SkBitmap::Config config, int width, int height, bool isOpaque,
488 Usage usage) {
489
490 // Save layer usage not supported, and not required by SkDeferredCanvas.
491 SkASSERT(usage != kSaveLayer_Usage);
492 // Create a compatible non-deferred device.
junov@chromium.orgb1c725a2013-05-21 20:16:17 +0000493 // We do not create a deferred device because we know the new device
494 // will not be used with a deferred canvas (there is no API for that).
495 // And connecting a DeferredDevice to non-deferred canvas can result
496 // in unpredictable behavior.
497 return immediateDevice()->createCompatibleDevice(config, width, height, isOpaque);
junov@chromium.org88e29142012-08-07 16:48:22 +0000498}
499
reed@google.com76f10a32014-02-05 15:32:21 +0000500SkSurface* DeferredDevice::newSurface(const SkImageInfo& info) {
501 return this->immediateDevice()->newSurface(info);
502}
503
junov@chromium.org88e29142012-08-07 16:48:22 +0000504bool DeferredDevice::onReadPixels(
505 const SkBitmap& bitmap, int x, int y, SkCanvas::Config8888 config8888) {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000506 this->flushPendingCommands(kNormal_PlaybackMode);
junov@chromium.org88e29142012-08-07 16:48:22 +0000507 return fImmediateCanvas->readPixels(const_cast<SkBitmap*>(&bitmap),
508 x, y, config8888);
509}
510
sugoi@google.com7775fd52012-11-21 15:47:04 +0000511class AutoImmediateDrawIfNeeded {
512public:
513 AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkBitmap* bitmap,
514 const SkPaint* paint) {
515 this->init(canvas, bitmap, paint);
516 }
517
518 AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkPaint* paint) {
519 this->init(canvas, NULL, paint);
520 }
521
522 ~AutoImmediateDrawIfNeeded() {
523 if (fCanvas) {
524 fCanvas->setDeferredDrawing(true);
525 }
526 }
527private:
528 void init(SkDeferredCanvas& canvas, const SkBitmap* bitmap, const SkPaint* paint)
529 {
530 DeferredDevice* device = static_cast<DeferredDevice*>(canvas.getDevice());
531 if (canvas.isDeferredDrawing() && (NULL != device) &&
532 shouldDrawImmediately(bitmap, paint, device->getBitmapSizeThreshold())) {
533 canvas.setDeferredDrawing(false);
534 fCanvas = &canvas;
535 } else {
536 fCanvas = NULL;
537 }
538 }
539
540 SkDeferredCanvas* fCanvas;
541};
junov@chromium.org88e29142012-08-07 16:48:22 +0000542
junov@chromium.org66070a52013-05-28 17:39:08 +0000543SkDeferredCanvas* SkDeferredCanvas::Create(SkSurface* surface) {
544 SkAutoTUnref<DeferredDevice> deferredDevice(SkNEW_ARGS(DeferredDevice, (surface)));
545 return SkNEW_ARGS(SkDeferredCanvas, (deferredDevice));
546}
547
junov@chromium.org66070a52013-05-28 17:39:08 +0000548SkDeferredCanvas::SkDeferredCanvas(DeferredDevice* device) : SkCanvas (device) {
549 this->init();
550}
junov@chromium.org67d74222013-04-12 13:33:01 +0000551
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000552void SkDeferredCanvas::init() {
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000553 fDeferredDrawing = true; // On by default
junov@google.com4370aed2012-01-18 16:21:08 +0000554}
555
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000556void SkDeferredCanvas::setMaxRecordingStorage(size_t maxStorage) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000557 this->validate();
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000558 this->getDeferredDevice()->setMaxRecordingStorage(maxStorage);
559}
560
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000561size_t SkDeferredCanvas::storageAllocatedForRecording() const {
562 return this->getDeferredDevice()->storageAllocatedForRecording();
563}
564
565size_t SkDeferredCanvas::freeMemoryIfPossible(size_t bytesToFree) {
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000566 return this->getDeferredDevice()->freeMemoryIfPossible(bytesToFree);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000567}
568
sugoi@google.com7775fd52012-11-21 15:47:04 +0000569void SkDeferredCanvas::setBitmapSizeThreshold(size_t sizeThreshold) {
570 DeferredDevice* deferredDevice = this->getDeferredDevice();
571 SkASSERT(deferredDevice);
572 deferredDevice->setBitmapSizeThreshold(sizeThreshold);
573}
574
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000575void SkDeferredCanvas::recordedDrawCommand() {
576 if (fDeferredDrawing) {
577 this->getDeferredDevice()->recordedDrawCommand();
578 }
579}
580
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000581void SkDeferredCanvas::validate() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000582 SkASSERT(this->getDevice());
junov@google.com4370aed2012-01-18 16:21:08 +0000583}
584
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000585SkCanvas* SkDeferredCanvas::drawingCanvas() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000586 this->validate();
587 return fDeferredDrawing ? this->getDeferredDevice()->recordingCanvas() :
588 this->getDeferredDevice()->immediateCanvas();
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000589}
590
junov@chromium.org88e29142012-08-07 16:48:22 +0000591SkCanvas* SkDeferredCanvas::immediateCanvas() const {
592 this->validate();
593 return this->getDeferredDevice()->immediateCanvas();
594}
595
596DeferredDevice* SkDeferredCanvas::getDeferredDevice() const {
597 return static_cast<DeferredDevice*>(this->getDevice());
junov@google.com4370aed2012-01-18 16:21:08 +0000598}
599
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000600void SkDeferredCanvas::setDeferredDrawing(bool val) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000601 this->validate(); // Must set device before calling this method
junov@google.com4370aed2012-01-18 16:21:08 +0000602 if (val != fDeferredDrawing) {
603 if (fDeferredDrawing) {
junov@chromium.org5e5a0952012-02-28 15:27:59 +0000604 // Going live.
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000605 this->getDeferredDevice()->flushPendingCommands(kNormal_PlaybackMode);
junov@google.com4370aed2012-01-18 16:21:08 +0000606 }
607 fDeferredDrawing = val;
608 }
609}
610
junov@chromium.org88e29142012-08-07 16:48:22 +0000611bool SkDeferredCanvas::isDeferredDrawing() const {
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +0000612 return fDeferredDrawing;
613}
614
junov@chromium.org88e29142012-08-07 16:48:22 +0000615bool SkDeferredCanvas::isFreshFrame() const {
616 return this->getDeferredDevice()->isFreshFrame();
617}
618
junov@chromium.orga38dfb62012-09-20 22:10:33 +0000619bool SkDeferredCanvas::hasPendingCommands() const {
620 return this->getDeferredDevice()->hasPendingCommands();
621}
622
junov@chromium.orgfb103892012-09-20 19:35:43 +0000623void SkDeferredCanvas::silentFlush() {
624 if (fDeferredDrawing) {
junov@chromium.orgeeaf47f2012-09-20 20:42:44 +0000625 this->getDeferredDevice()->flushPendingCommands(kSilent_PlaybackMode);
junov@chromium.orgfb103892012-09-20 19:35:43 +0000626 }
627}
628
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000629SkDeferredCanvas::~SkDeferredCanvas() {
junov@google.com4370aed2012-01-18 16:21:08 +0000630}
631
junov@chromium.org7070f762013-05-24 17:13:00 +0000632SkSurface* SkDeferredCanvas::setSurface(SkSurface* surface) {
633 DeferredDevice* deferredDevice = this->getDeferredDevice();
junov@chromium.org66070a52013-05-28 17:39:08 +0000634 SkASSERT(NULL != deferredDevice);
635 // By swapping the surface into the existing device, we preserve
636 // all pending commands, which can help to seamlessly recover from
637 // a lost accelerated graphics context.
638 deferredDevice->setSurface(surface);
junov@chromium.org7070f762013-05-24 17:13:00 +0000639 return surface;
640}
641
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000642SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient(
643 NotificationClient* notificationClient) {
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000644
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000645 DeferredDevice* deferredDevice = this->getDeferredDevice();
junov@google.com4370aed2012-01-18 16:21:08 +0000646 SkASSERT(deferredDevice);
647 if (deferredDevice) {
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000648 deferredDevice->setNotificationClient(notificationClient);
junov@google.com4370aed2012-01-18 16:21:08 +0000649 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000650 return notificationClient;
junov@google.com4370aed2012-01-18 16:21:08 +0000651}
652
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000653SkImage* SkDeferredCanvas::newImageSnapshot() {
junov@chromium.org67d74222013-04-12 13:33:01 +0000654 DeferredDevice* deferredDevice = this->getDeferredDevice();
655 SkASSERT(deferredDevice);
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000656 return deferredDevice ? deferredDevice->newImageSnapshot() : NULL;
junov@chromium.org67d74222013-04-12 13:33:01 +0000657}
658
junov@google.com4370aed2012-01-18 16:21:08 +0000659bool SkDeferredCanvas::isFullFrame(const SkRect* rect,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000660 const SkPaint* paint) const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000661 SkCanvas* canvas = this->drawingCanvas();
662 SkISize canvasSize = this->getDeviceSize();
junov@google.com4370aed2012-01-18 16:21:08 +0000663 if (rect) {
664 if (!canvas->getTotalMatrix().rectStaysRect()) {
665 return false; // conservative
666 }
667
668 SkRect transformedRect;
669 canvas->getTotalMatrix().mapRect(&transformedRect, *rect);
670
671 if (paint) {
672 SkPaint::Style paintStyle = paint->getStyle();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000673 if (!(paintStyle == SkPaint::kFill_Style ||
junov@google.com4370aed2012-01-18 16:21:08 +0000674 paintStyle == SkPaint::kStrokeAndFill_Style)) {
675 return false;
676 }
677 if (paint->getMaskFilter() || paint->getLooper()
678 || paint->getPathEffect() || paint->getImageFilter()) {
679 return false; // conservative
680 }
681 }
682
683 // The following test holds with AA enabled, and is conservative
684 // by a 0.5 pixel margin with AA disabled
rmistry@google.comd6176b02012-08-23 18:14:13 +0000685 if (transformedRect.fLeft > SkIntToScalar(0) ||
686 transformedRect.fTop > SkIntToScalar(0) ||
junov@chromium.orgb1e218e2012-02-13 22:27:58 +0000687 transformedRect.fRight < SkIntToScalar(canvasSize.fWidth) ||
688 transformedRect.fBottom < SkIntToScalar(canvasSize.fHeight)) {
junov@google.com4370aed2012-01-18 16:21:08 +0000689 return false;
690 }
691 }
692
junov@chromium.org8f0ca062012-12-13 16:30:39 +0000693 return this->getClipStack()->quickContains(SkRect::MakeXYWH(0, 0,
694 SkIntToScalar(canvasSize.fWidth), SkIntToScalar(canvasSize.fHeight)));
junov@google.com4370aed2012-01-18 16:21:08 +0000695}
696
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000697int SkDeferredCanvas::save(SaveFlags flags) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000698 this->drawingCanvas()->save(flags);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000699 int val = this->INHERITED::save(flags);
700 this->recordedDrawCommand();
701
702 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000703}
704
705int SkDeferredCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000706 SaveFlags flags) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000707 this->drawingCanvas()->saveLayer(bounds, paint, flags);
junov@chromium.orga907ac32012-02-24 21:54:07 +0000708 int count = this->INHERITED::save(flags);
709 this->clipRectBounds(bounds, flags, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000710 this->recordedDrawCommand();
711
junov@chromium.orga907ac32012-02-24 21:54:07 +0000712 return count;
junov@google.com4370aed2012-01-18 16:21:08 +0000713}
714
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000715void SkDeferredCanvas::restore() {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000716 this->drawingCanvas()->restore();
junov@chromium.orga907ac32012-02-24 21:54:07 +0000717 this->INHERITED::restore();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000718 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000719}
720
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000721bool SkDeferredCanvas::isDrawingToLayer() const {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000722 return this->drawingCanvas()->isDrawingToLayer();
junov@google.com4370aed2012-01-18 16:21:08 +0000723}
724
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000725bool SkDeferredCanvas::translate(SkScalar dx, SkScalar dy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000726 this->drawingCanvas()->translate(dx, dy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000727 bool val = this->INHERITED::translate(dx, dy);
728 this->recordedDrawCommand();
729 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000730}
731
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000732bool SkDeferredCanvas::scale(SkScalar sx, SkScalar sy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000733 this->drawingCanvas()->scale(sx, sy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000734 bool val = this->INHERITED::scale(sx, sy);
735 this->recordedDrawCommand();
736 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000737}
738
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000739bool SkDeferredCanvas::rotate(SkScalar degrees) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000740 this->drawingCanvas()->rotate(degrees);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000741 bool val = this->INHERITED::rotate(degrees);
742 this->recordedDrawCommand();
743 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000744}
745
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000746bool SkDeferredCanvas::skew(SkScalar sx, SkScalar sy) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000747 this->drawingCanvas()->skew(sx, sy);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000748 bool val = this->INHERITED::skew(sx, sy);
749 this->recordedDrawCommand();
750 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000751}
752
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000753bool SkDeferredCanvas::concat(const SkMatrix& matrix) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000754 this->drawingCanvas()->concat(matrix);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000755 bool val = this->INHERITED::concat(matrix);
756 this->recordedDrawCommand();
757 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000758}
759
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000760void SkDeferredCanvas::setMatrix(const SkMatrix& matrix) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000761 this->drawingCanvas()->setMatrix(matrix);
junov@chromium.orga907ac32012-02-24 21:54:07 +0000762 this->INHERITED::setMatrix(matrix);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000763 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000764}
765
766bool SkDeferredCanvas::clipRect(const SkRect& rect,
767 SkRegion::Op op,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000768 bool doAntiAlias) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000769 this->drawingCanvas()->clipRect(rect, op, doAntiAlias);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000770 bool val = this->INHERITED::clipRect(rect, op, doAntiAlias);
771 this->recordedDrawCommand();
772 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000773}
774
reed@google.com4ed0fb72012-12-12 20:48:18 +0000775bool SkDeferredCanvas::clipRRect(const SkRRect& rrect,
776 SkRegion::Op op,
777 bool doAntiAlias) {
778 this->drawingCanvas()->clipRRect(rrect, op, doAntiAlias);
779 bool val = this->INHERITED::clipRRect(rrect, op, doAntiAlias);
780 this->recordedDrawCommand();
781 return val;
782}
783
junov@google.com4370aed2012-01-18 16:21:08 +0000784bool SkDeferredCanvas::clipPath(const SkPath& path,
785 SkRegion::Op op,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000786 bool doAntiAlias) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000787 this->drawingCanvas()->clipPath(path, op, doAntiAlias);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000788 bool val = this->INHERITED::clipPath(path, op, doAntiAlias);
789 this->recordedDrawCommand();
790 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000791}
792
793bool SkDeferredCanvas::clipRegion(const SkRegion& deviceRgn,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000794 SkRegion::Op op) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000795 this->drawingCanvas()->clipRegion(deviceRgn, op);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000796 bool val = this->INHERITED::clipRegion(deviceRgn, op);
797 this->recordedDrawCommand();
798 return val;
junov@google.com4370aed2012-01-18 16:21:08 +0000799}
800
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000801void SkDeferredCanvas::clear(SkColor color) {
junov@google.com4370aed2012-01-18 16:21:08 +0000802 // purge pending commands
803 if (fDeferredDrawing) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000804 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000805 }
806
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000807 this->drawingCanvas()->clear(color);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000808 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000809}
810
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000811void SkDeferredCanvas::drawPaint(const SkPaint& paint) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000812 if (fDeferredDrawing && this->isFullFrame(NULL, &paint) &&
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000813 isPaintOpaque(&paint)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000814 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000815 }
junov@chromium.org10f7f972012-07-31 21:01:51 +0000816 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000817 this->drawingCanvas()->drawPaint(paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000818 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000819}
820
821void SkDeferredCanvas::drawPoints(PointMode mode, size_t count,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000822 const SkPoint pts[], const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000823 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000824 this->drawingCanvas()->drawPoints(mode, count, pts, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000825 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000826}
827
reed@google.com4ed0fb72012-12-12 20:48:18 +0000828void SkDeferredCanvas::drawOval(const SkRect& rect, const SkPaint& paint) {
829 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
830 this->drawingCanvas()->drawOval(rect, paint);
831 this->recordedDrawCommand();
832}
833
bsalomon@google.com7ce564c2013-10-22 16:54:15 +0000834void SkDeferredCanvas::drawRect(const SkRect& rect, const SkPaint& paint) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000835 if (fDeferredDrawing && this->isFullFrame(&rect, &paint) &&
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000836 isPaintOpaque(&paint)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000837 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000838 }
skia.committer@gmail.com306ab9d2012-12-13 02:01:33 +0000839
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
reed@google.com4ed0fb72012-12-12 20:48:18 +0000845void SkDeferredCanvas::drawRRect(const SkRRect& rrect, const SkPaint& paint) {
846 if (rrect.isRect()) {
847 this->SkDeferredCanvas::drawRect(rrect.getBounds(), paint);
848 } else if (rrect.isOval()) {
849 this->SkDeferredCanvas::drawOval(rrect.getBounds(), paint);
850 } else {
851 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
852 this->drawingCanvas()->drawRRect(rrect, paint);
853 this->recordedDrawCommand();
854 }
855}
856
bsalomon@google.com7ce564c2013-10-22 16:54:15 +0000857void SkDeferredCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000858 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000859 this->drawingCanvas()->drawPath(path, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000860 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000861}
862
863void SkDeferredCanvas::drawBitmap(const SkBitmap& bitmap, SkScalar left,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000864 SkScalar top, const SkPaint* paint) {
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000865 SkRect bitmapRect = SkRect::MakeXYWH(left, top,
866 SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height()));
rmistry@google.comd6176b02012-08-23 18:14:13 +0000867 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000868 this->isFullFrame(&bitmapRect, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000869 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000870 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000871 }
872
junov@chromium.org10f7f972012-07-31 21:01:51 +0000873 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000874 this->drawingCanvas()->drawBitmap(bitmap, left, top, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000875 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000876}
877
reed@google.com71121732012-09-18 15:14:33 +0000878void SkDeferredCanvas::drawBitmapRectToRect(const SkBitmap& bitmap,
879 const SkRect* src,
880 const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000881 const SkPaint* paint,
882 DrawBitmapRectFlags flags) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000883 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000884 this->isFullFrame(&dst, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000885 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000886 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000887 }
888
junov@chromium.org10f7f972012-07-31 21:01:51 +0000889 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000890 this->drawingCanvas()->drawBitmapRectToRect(bitmap, src, dst, paint, flags);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000891 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000892}
893
894
895void SkDeferredCanvas::drawBitmapMatrix(const SkBitmap& bitmap,
896 const SkMatrix& m,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000897 const SkPaint* paint) {
junov@google.com4370aed2012-01-18 16:21:08 +0000898 // TODO: reset recording canvas if paint+bitmap is opaque and clip rect
899 // covers canvas entirely and transformed bitmap covers canvas entirely
junov@chromium.org10f7f972012-07-31 21:01:51 +0000900 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000901 this->drawingCanvas()->drawBitmapMatrix(bitmap, m, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000902 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000903}
904
905void SkDeferredCanvas::drawBitmapNine(const SkBitmap& bitmap,
906 const SkIRect& center, const SkRect& dst,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000907 const SkPaint* paint) {
junov@google.com4370aed2012-01-18 16:21:08 +0000908 // TODO: reset recording canvas if paint+bitmap is opaque and clip rect
909 // covers canvas entirely and dst covers canvas entirely
junov@chromium.org10f7f972012-07-31 21:01:51 +0000910 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000911 this->drawingCanvas()->drawBitmapNine(bitmap, center, dst, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000912 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000913}
914
915void SkDeferredCanvas::drawSprite(const SkBitmap& bitmap, int left, int top,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000916 const SkPaint* paint) {
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000917 SkRect bitmapRect = SkRect::MakeXYWH(
918 SkIntToScalar(left),
rmistry@google.comd6176b02012-08-23 18:14:13 +0000919 SkIntToScalar(top),
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000920 SkIntToScalar(bitmap.width()),
921 SkIntToScalar(bitmap.height()));
rmistry@google.comd6176b02012-08-23 18:14:13 +0000922 if (fDeferredDrawing &&
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000923 this->isFullFrame(&bitmapRect, paint) &&
junov@chromium.org87f982c2012-02-23 21:34:34 +0000924 isPaintOpaque(paint, &bitmap)) {
junov@chromium.org0a67f962012-09-19 22:48:34 +0000925 this->getDeferredDevice()->skipPendingCommands();
junov@google.com4370aed2012-01-18 16:21:08 +0000926 }
927
junov@chromium.org10f7f972012-07-31 21:01:51 +0000928 AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000929 this->drawingCanvas()->drawSprite(bitmap, left, top, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000930 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000931}
932
933void SkDeferredCanvas::drawText(const void* text, size_t byteLength,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000934 SkScalar x, SkScalar y, const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000935 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000936 this->drawingCanvas()->drawText(text, byteLength, x, y, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000937 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000938}
939
940void SkDeferredCanvas::drawPosText(const void* text, size_t byteLength,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000941 const SkPoint pos[], const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000942 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000943 this->drawingCanvas()->drawPosText(text, byteLength, pos, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000944 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000945}
946
947void SkDeferredCanvas::drawPosTextH(const void* text, size_t byteLength,
948 const SkScalar xpos[], SkScalar constY,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000949 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000950 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000951 this->drawingCanvas()->drawPosTextH(text, byteLength, xpos, constY, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000952 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000953}
954
955void SkDeferredCanvas::drawTextOnPath(const void* text, size_t byteLength,
956 const SkPath& path,
957 const SkMatrix* matrix,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000958 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000959 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000960 this->drawingCanvas()->drawTextOnPath(text, byteLength, path, matrix, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000961 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000962}
963
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000964void SkDeferredCanvas::drawPicture(SkPicture& picture) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000965 this->drawingCanvas()->drawPicture(picture);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000966 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000967}
968
969void SkDeferredCanvas::drawVertices(VertexMode vmode, int vertexCount,
970 const SkPoint vertices[],
971 const SkPoint texs[],
972 const SkColor colors[], SkXfermode* xmode,
973 const uint16_t indices[], int indexCount,
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000974 const SkPaint& paint) {
junov@chromium.org10f7f972012-07-31 21:01:51 +0000975 AutoImmediateDrawIfNeeded autoDraw(*this, &paint);
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000976 this->drawingCanvas()->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode,
977 indices, indexCount, paint);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000978 this->recordedDrawCommand();
junov@google.com4370aed2012-01-18 16:21:08 +0000979}
980
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000981SkBounder* SkDeferredCanvas::setBounder(SkBounder* bounder) {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000982 this->drawingCanvas()->setBounder(bounder);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000983 this->INHERITED::setBounder(bounder);
984 this->recordedDrawCommand();
985 return bounder;
junov@google.com4370aed2012-01-18 16:21:08 +0000986}
987
junov@chromium.orgc16ca922012-02-24 22:06:27 +0000988SkDrawFilter* SkDeferredCanvas::setDrawFilter(SkDrawFilter* filter) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000989 this->drawingCanvas()->setDrawFilter(filter);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000990 this->INHERITED::setDrawFilter(filter);
991 this->recordedDrawCommand();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000992 return filter;
junov@google.com4370aed2012-01-18 16:21:08 +0000993}
994
995SkCanvas* SkDeferredCanvas::canvasForDrawIter() {
junov@chromium.org9060c9b2012-08-07 15:14:01 +0000996 return this->drawingCanvas();
junov@google.com4370aed2012-01-18 16:21:08 +0000997}