junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 3 | * Copyright 2012 Google Inc. |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
| 9 | #include "SkDeferredCanvas.h" |
| 10 | |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 11 | #include "SkChunkAlloc.h" |
| 12 | #include "SkColorFilter.h" |
| 13 | #include "SkDevice.h" |
| 14 | #include "SkDrawFilter.h" |
| 15 | #include "SkGPipe.h" |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 16 | #include "SkPaint.h" |
| 17 | #include "SkShader.h" |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 18 | |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 19 | SK_DEFINE_INST_COUNT(SkDeferredCanvas::NotificationClient) |
reed@google.com | 563a3b4 | 2012-06-26 19:24:50 +0000 | [diff] [blame] | 20 | |
junov@chromium.org | bfeddae | 2012-07-23 13:35:14 +0000 | [diff] [blame] | 21 | enum { |
| 22 | // Deferred canvas will auto-flush when recording reaches this limit |
| 23 | kDefaultMaxRecordingStorageBytes = 64*1024*1024, |
| 24 | }; |
| 25 | |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 26 | namespace { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 27 | bool shouldDrawImmediately(const SkBitmap* bitmap, const SkPaint* paint) { |
| 28 | if (bitmap && bitmap->getTexture() && !bitmap->isImmutable()) { |
| 29 | return true; |
| 30 | } |
| 31 | if (paint) { |
| 32 | SkShader* shader = paint->getShader(); |
| 33 | // Here we detect the case where the shader is an SkBitmapProcShader |
| 34 | // with a gpu texture attached. Checking this without RTTI |
| 35 | // requires making the assumption that only gradient shaders |
| 36 | // and SkBitmapProcShader implement asABitmap(). The following |
| 37 | // code may need to be revised if that assumption is ever broken. |
| 38 | if (shader && !shader->asAGradient(NULL)) { |
| 39 | SkBitmap bm; |
| 40 | if (shader->asABitmap(&bm, NULL, NULL) && |
| 41 | NULL != bm.getTexture()) { |
| 42 | return true; |
| 43 | } |
| 44 | } |
| 45 | } |
| 46 | return false; |
junov@chromium.org | b10a6bd | 2012-07-25 17:27:13 +0000 | [diff] [blame] | 47 | } |
| 48 | } |
| 49 | |
| 50 | class AutoImmediateDrawIfNeeded { |
| 51 | public: |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 52 | AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkBitmap* bitmap, |
| 53 | const SkPaint* paint) { |
| 54 | this->init(canvas, bitmap, paint); |
| 55 | } |
| 56 | |
| 57 | AutoImmediateDrawIfNeeded(SkDeferredCanvas& canvas, const SkPaint* paint) { |
| 58 | this->init(canvas, NULL, paint); |
junov@chromium.org | b10a6bd | 2012-07-25 17:27:13 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | ~AutoImmediateDrawIfNeeded() { |
| 62 | if (fCanvas) { |
| 63 | fCanvas->setDeferredDrawing(true); |
| 64 | } |
| 65 | } |
| 66 | private: |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 67 | void init(SkDeferredCanvas& canvas, const SkBitmap* bitmap, const SkPaint* paint) |
| 68 | { |
| 69 | if (canvas.isDeferredDrawing() && shouldDrawImmediately(bitmap, paint)) { |
| 70 | canvas.setDeferredDrawing(false); |
| 71 | fCanvas = &canvas; |
| 72 | } else { |
| 73 | fCanvas = NULL; |
| 74 | } |
| 75 | } |
| 76 | |
junov@chromium.org | b10a6bd | 2012-07-25 17:27:13 +0000 | [diff] [blame] | 77 | SkDeferredCanvas* fCanvas; |
| 78 | }; |
| 79 | |
| 80 | namespace { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 81 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 82 | bool isPaintOpaque(const SkPaint* paint, |
| 83 | const SkBitmap* bmpReplacesShader = NULL) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 84 | // TODO: SkXfermode should have a virtual isOpaque method, which would |
| 85 | // make it possible to test modes that do not have a Coeff representation. |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 86 | |
| 87 | if (!paint) { |
| 88 | return bmpReplacesShader ? bmpReplacesShader->isOpaque() : true; |
| 89 | } |
| 90 | |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 91 | SkXfermode::Coeff srcCoeff, dstCoeff; |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 92 | if (SkXfermode::AsCoeff(paint->getXfermode(), &srcCoeff, &dstCoeff)){ |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 93 | switch (dstCoeff) { |
| 94 | case SkXfermode::kZero_Coeff: |
| 95 | return true; |
| 96 | case SkXfermode::kISA_Coeff: |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 97 | if (paint->getAlpha() != 255) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 98 | break; |
| 99 | } |
| 100 | if (bmpReplacesShader) { |
| 101 | if (!bmpReplacesShader->isOpaque()) { |
| 102 | break; |
| 103 | } |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 104 | } else if (paint->getShader() && !paint->getShader()->isOpaque()) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 105 | break; |
| 106 | } |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 107 | if (paint->getColorFilter() && |
| 108 | ((paint->getColorFilter()->getFlags() & |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 109 | SkColorFilter::kAlphaUnchanged_Flag) == 0)) { |
| 110 | break; |
| 111 | } |
| 112 | return true; |
| 113 | case SkXfermode::kSA_Coeff: |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 114 | if (paint->getAlpha() != 0) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 115 | break; |
| 116 | } |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 117 | if (paint->getColorFilter() && |
| 118 | ((paint->getColorFilter()->getFlags() & |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 119 | SkColorFilter::kAlphaUnchanged_Flag) == 0)) { |
| 120 | break; |
| 121 | } |
| 122 | return true; |
| 123 | case SkXfermode::kSC_Coeff: |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 124 | if (paint->getColor() != 0) { // all components must be 0 |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 125 | break; |
| 126 | } |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 127 | if (bmpReplacesShader || paint->getShader()) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 128 | break; |
| 129 | } |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 130 | if (paint->getColorFilter() && ( |
| 131 | (paint->getColorFilter()->getFlags() & |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 132 | SkColorFilter::kAlphaUnchanged_Flag) == 0)) { |
| 133 | break; |
| 134 | } |
| 135 | return true; |
| 136 | default: |
| 137 | break; |
| 138 | } |
| 139 | } |
| 140 | return false; |
| 141 | } |
| 142 | |
| 143 | } // unnamed namespace |
| 144 | |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 145 | //----------------------------------------------------------------------------- |
| 146 | // DeferredPipeController |
| 147 | //----------------------------------------------------------------------------- |
| 148 | |
| 149 | class DeferredPipeController : public SkGPipeController { |
| 150 | public: |
| 151 | DeferredPipeController(); |
| 152 | void setPlaybackCanvas(SkCanvas*); |
| 153 | virtual ~DeferredPipeController(); |
| 154 | virtual void* requestBlock(size_t minRequest, size_t* actual) SK_OVERRIDE; |
| 155 | virtual void notifyWritten(size_t bytes) SK_OVERRIDE; |
| 156 | void playback(); |
| 157 | void reset(); |
| 158 | bool hasRecorded() const { return fAllocator.blockCount() != 0; } |
| 159 | size_t storageAllocatedForRecording() const { return fAllocator.totalCapacity(); } |
| 160 | private: |
| 161 | enum { |
| 162 | kMinBlockSize = 4096 |
| 163 | }; |
| 164 | struct PipeBlock { |
| 165 | PipeBlock(void* block, size_t size) { fBlock = block, fSize = size; } |
| 166 | void* fBlock; |
| 167 | size_t fSize; |
| 168 | }; |
| 169 | void* fBlock; |
| 170 | size_t fBytesWritten; |
| 171 | SkChunkAlloc fAllocator; |
| 172 | SkTDArray<PipeBlock> fBlockList; |
| 173 | SkGPipeReader fReader; |
| 174 | }; |
| 175 | |
| 176 | DeferredPipeController::DeferredPipeController() : |
| 177 | fAllocator(kMinBlockSize) { |
| 178 | fBlock = NULL; |
| 179 | fBytesWritten = 0; |
| 180 | } |
| 181 | |
| 182 | DeferredPipeController::~DeferredPipeController() { |
| 183 | fAllocator.reset(); |
| 184 | } |
| 185 | |
| 186 | void DeferredPipeController::setPlaybackCanvas(SkCanvas* canvas) { |
| 187 | fReader.setCanvas(canvas); |
| 188 | } |
| 189 | |
| 190 | void* DeferredPipeController::requestBlock(size_t minRequest, size_t *actual) { |
| 191 | if (fBlock) { |
| 192 | // Save the previous block for later |
| 193 | PipeBlock previousBloc(fBlock, fBytesWritten); |
| 194 | fBlockList.push(previousBloc); |
| 195 | } |
| 196 | int32_t blockSize = SkMax32(minRequest, kMinBlockSize); |
| 197 | fBlock = fAllocator.allocThrow(blockSize); |
| 198 | fBytesWritten = 0; |
| 199 | *actual = blockSize; |
| 200 | return fBlock; |
| 201 | } |
| 202 | |
| 203 | void DeferredPipeController::notifyWritten(size_t bytes) { |
| 204 | fBytesWritten += bytes; |
| 205 | } |
| 206 | |
| 207 | void DeferredPipeController::playback() { |
| 208 | |
| 209 | for (int currentBlock = 0; currentBlock < fBlockList.count(); currentBlock++ ) { |
| 210 | fReader.playback(fBlockList[currentBlock].fBlock, fBlockList[currentBlock].fSize); |
| 211 | } |
| 212 | fBlockList.reset(); |
| 213 | |
| 214 | if (fBlock) { |
| 215 | fReader.playback(fBlock, fBytesWritten); |
| 216 | fBlock = NULL; |
| 217 | } |
| 218 | |
| 219 | // Release all allocated blocks |
| 220 | fAllocator.reset(); |
| 221 | } |
| 222 | |
| 223 | void DeferredPipeController::reset() { |
| 224 | fBlockList.reset(); |
| 225 | fBlock = NULL; |
| 226 | fAllocator.reset(); |
| 227 | } |
| 228 | |
| 229 | //----------------------------------------------------------------------------- |
| 230 | // DeferredDevice |
| 231 | //----------------------------------------------------------------------------- |
| 232 | |
| 233 | class DeferredDevice : public SkDevice { |
| 234 | public: |
| 235 | DeferredDevice(SkDevice* immediateDevice, |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 236 | SkDeferredCanvas::NotificationClient* notificationClient = NULL); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 237 | ~DeferredDevice(); |
| 238 | |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 239 | void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 240 | SkCanvas* recordingCanvas(); |
| 241 | SkCanvas* immediateCanvas() const {return fImmediateCanvas;} |
| 242 | SkDevice* immediateDevice() const {return fImmediateDevice;} |
| 243 | bool isFreshFrame(); |
| 244 | size_t storageAllocatedForRecording() const; |
| 245 | size_t freeMemoryIfPossible(size_t bytesToFree); |
| 246 | void flushPending(); |
| 247 | void contentsCleared(); |
| 248 | void setMaxRecordingStorage(size_t); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 249 | void recordedDrawCommand(); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 250 | |
| 251 | virtual uint32_t getDeviceCapabilities() SK_OVERRIDE; |
| 252 | virtual int width() const SK_OVERRIDE; |
| 253 | virtual int height() const SK_OVERRIDE; |
| 254 | virtual SkGpuRenderTarget* accessRenderTarget() SK_OVERRIDE; |
| 255 | |
| 256 | virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config, |
| 257 | int width, int height, |
| 258 | bool isOpaque, |
| 259 | Usage usage) SK_OVERRIDE; |
| 260 | |
| 261 | virtual void writePixels(const SkBitmap& bitmap, int x, int y, |
| 262 | SkCanvas::Config8888 config8888) SK_OVERRIDE; |
| 263 | |
| 264 | protected: |
| 265 | virtual const SkBitmap& onAccessBitmap(SkBitmap*) SK_OVERRIDE; |
| 266 | virtual bool onReadPixels(const SkBitmap& bitmap, |
| 267 | int x, int y, |
| 268 | SkCanvas::Config8888 config8888) SK_OVERRIDE; |
| 269 | |
| 270 | // The following methods are no-ops on a deferred device |
| 271 | virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) |
| 272 | SK_OVERRIDE |
| 273 | {return false;} |
| 274 | virtual void setMatrixClip(const SkMatrix&, const SkRegion&, |
| 275 | const SkClipStack&) SK_OVERRIDE |
| 276 | {} |
| 277 | |
| 278 | // None of the following drawing methods should ever get called on the |
| 279 | // deferred device |
| 280 | virtual void clear(SkColor color) |
| 281 | {SkASSERT(0);} |
| 282 | virtual void drawPaint(const SkDraw&, const SkPaint& paint) |
| 283 | {SkASSERT(0);} |
| 284 | virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, |
| 285 | size_t count, const SkPoint[], |
| 286 | const SkPaint& paint) |
| 287 | {SkASSERT(0);} |
| 288 | virtual void drawRect(const SkDraw&, const SkRect& r, |
| 289 | const SkPaint& paint) |
| 290 | {SkASSERT(0);} |
| 291 | virtual void drawPath(const SkDraw&, const SkPath& path, |
| 292 | const SkPaint& paint, |
| 293 | const SkMatrix* prePathMatrix = NULL, |
| 294 | bool pathIsMutable = false) |
| 295 | {SkASSERT(0);} |
| 296 | virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
| 297 | const SkIRect* srcRectOrNull, |
| 298 | const SkMatrix& matrix, const SkPaint& paint) |
| 299 | {SkASSERT(0);} |
| 300 | virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, |
| 301 | int x, int y, const SkPaint& paint) |
| 302 | {SkASSERT(0);} |
| 303 | virtual void drawText(const SkDraw&, const void* text, size_t len, |
| 304 | SkScalar x, SkScalar y, const SkPaint& paint) |
| 305 | {SkASSERT(0);} |
| 306 | virtual void drawPosText(const SkDraw&, const void* text, size_t len, |
| 307 | const SkScalar pos[], SkScalar constY, |
| 308 | int scalarsPerPos, const SkPaint& paint) |
| 309 | {SkASSERT(0);} |
| 310 | virtual void drawTextOnPath(const SkDraw&, const void* text, |
| 311 | size_t len, const SkPath& path, |
| 312 | const SkMatrix* matrix, |
| 313 | const SkPaint& paint) |
| 314 | {SkASSERT(0);} |
| 315 | virtual void drawPosTextOnPath(const SkDraw& draw, const void* text, |
| 316 | size_t len, const SkPoint pos[], |
| 317 | const SkPaint& paint, |
| 318 | const SkPath& path, |
| 319 | const SkMatrix* matrix) |
| 320 | {SkASSERT(0);} |
| 321 | virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, |
| 322 | int vertexCount, const SkPoint verts[], |
| 323 | const SkPoint texs[], const SkColor colors[], |
| 324 | SkXfermode* xmode, const uint16_t indices[], |
| 325 | int indexCount, const SkPaint& paint) |
| 326 | {SkASSERT(0);} |
| 327 | virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y, |
| 328 | const SkPaint&) |
| 329 | {SkASSERT(0);} |
| 330 | private: |
| 331 | virtual void flush(); |
| 332 | |
| 333 | void endRecording(); |
| 334 | void beginRecording(); |
| 335 | |
| 336 | DeferredPipeController fPipeController; |
| 337 | SkGPipeWriter fPipeWriter; |
| 338 | SkDevice* fImmediateDevice; |
| 339 | SkCanvas* fImmediateCanvas; |
| 340 | SkCanvas* fRecordingCanvas; |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 341 | SkDeferredCanvas::NotificationClient* fNotificationClient; |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 342 | bool fFreshFrame; |
| 343 | size_t fMaxRecordingStorageBytes; |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 344 | size_t fPreviousStorageAllocated; |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 345 | }; |
| 346 | |
| 347 | DeferredDevice::DeferredDevice( |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 348 | SkDevice* immediateDevice, SkDeferredCanvas::NotificationClient* notificationClient) : |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 349 | SkDevice(SkBitmap::kNo_Config, immediateDevice->width(), |
| 350 | immediateDevice->height(), immediateDevice->isOpaque()) |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 351 | , fFreshFrame(true) |
| 352 | , fPreviousStorageAllocated(0){ |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 353 | |
| 354 | fMaxRecordingStorageBytes = kDefaultMaxRecordingStorageBytes; |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 355 | fNotificationClient = notificationClient; |
| 356 | SkSafeRef(fNotificationClient); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 357 | fImmediateDevice = immediateDevice; // ref counted via fImmediateCanvas |
| 358 | fImmediateCanvas = SkNEW_ARGS(SkCanvas, (fImmediateDevice)); |
| 359 | fPipeController.setPlaybackCanvas(fImmediateCanvas); |
| 360 | this->beginRecording(); |
| 361 | } |
| 362 | |
| 363 | DeferredDevice::~DeferredDevice() { |
| 364 | this->flushPending(); |
| 365 | SkSafeUnref(fImmediateCanvas); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 366 | SkSafeUnref(fNotificationClient); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | void DeferredDevice::setMaxRecordingStorage(size_t maxStorage) { |
| 370 | fMaxRecordingStorageBytes = maxStorage; |
| 371 | this->recordingCanvas(); // Accessing the recording canvas applies the new limit. |
| 372 | } |
| 373 | |
| 374 | void DeferredDevice::endRecording() { |
| 375 | fPipeWriter.endRecording(); |
| 376 | fPipeController.reset(); |
| 377 | fRecordingCanvas = NULL; |
| 378 | } |
| 379 | |
| 380 | void DeferredDevice::beginRecording() { |
| 381 | fRecordingCanvas = fPipeWriter.startRecording(&fPipeController, 0); |
| 382 | } |
| 383 | |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 384 | void DeferredDevice::setNotificationClient( |
| 385 | SkDeferredCanvas::NotificationClient* notificationClient) { |
| 386 | SkRefCnt_SafeAssign(fNotificationClient, notificationClient); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | void DeferredDevice::contentsCleared() { |
| 390 | if (!fRecordingCanvas->isDrawingToLayer()) { |
| 391 | fFreshFrame = true; |
| 392 | |
| 393 | // TODO: find a way to transfer the state stack and layers |
| 394 | // to the new recording canvas. For now, purging only works |
| 395 | // with an empty stack. |
| 396 | if (fRecordingCanvas->getSaveCount() == 0) { |
| 397 | |
| 398 | // Save state that is trashed by the purge |
| 399 | SkDrawFilter* drawFilter = fRecordingCanvas->getDrawFilter(); |
| 400 | SkSafeRef(drawFilter); // So that it survives the purge |
| 401 | SkMatrix matrix = fRecordingCanvas->getTotalMatrix(); |
| 402 | SkRegion clipRegion = fRecordingCanvas->getTotalClip(); |
| 403 | |
| 404 | // beginRecording creates a new recording canvas and discards the |
| 405 | // old one, hence purging deferred draw ops. |
| 406 | this->endRecording(); |
| 407 | this->beginRecording(); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 408 | fPreviousStorageAllocated = storageAllocatedForRecording(); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 409 | |
| 410 | // Restore pre-purge state |
| 411 | if (!clipRegion.isEmpty()) { |
| 412 | fRecordingCanvas->clipRegion(clipRegion, |
| 413 | SkRegion::kReplace_Op); |
| 414 | } |
| 415 | if (!matrix.isIdentity()) { |
| 416 | fRecordingCanvas->setMatrix(matrix); |
| 417 | } |
| 418 | if (drawFilter) { |
| 419 | fRecordingCanvas->setDrawFilter(drawFilter)->unref(); |
| 420 | } |
| 421 | } |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | bool DeferredDevice::isFreshFrame() { |
| 426 | bool ret = fFreshFrame; |
| 427 | fFreshFrame = false; |
| 428 | return ret; |
| 429 | } |
| 430 | |
| 431 | void DeferredDevice::flushPending() { |
| 432 | if (!fPipeController.hasRecorded()) { |
| 433 | return; |
| 434 | } |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 435 | if (fNotificationClient) { |
| 436 | fNotificationClient->prepareForDraw(); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 437 | } |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 438 | fPipeWriter.flushRecording(true); |
| 439 | fPipeController.playback(); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 440 | if (fNotificationClient) { |
| 441 | fNotificationClient->flushedDrawCommands(); |
| 442 | } |
| 443 | fPreviousStorageAllocated = storageAllocatedForRecording(); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | void DeferredDevice::flush() { |
| 447 | this->flushPending(); |
| 448 | fImmediateCanvas->flush(); |
| 449 | } |
| 450 | |
| 451 | size_t DeferredDevice::freeMemoryIfPossible(size_t bytesToFree) { |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 452 | size_t val = fPipeWriter.freeMemoryIfPossible(bytesToFree); |
| 453 | fPreviousStorageAllocated = storageAllocatedForRecording(); |
| 454 | return val; |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | size_t DeferredDevice::storageAllocatedForRecording() const { |
| 458 | return (fPipeController.storageAllocatedForRecording() |
| 459 | + fPipeWriter.storageAllocatedForRecording()); |
| 460 | } |
| 461 | |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 462 | void DeferredDevice::recordedDrawCommand() { |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 463 | size_t storageAllocated = this->storageAllocatedForRecording(); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 464 | |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 465 | if (storageAllocated > fMaxRecordingStorageBytes) { |
| 466 | // First, attempt to reduce cache without flushing |
| 467 | size_t tryFree = storageAllocated - fMaxRecordingStorageBytes; |
| 468 | if (this->freeMemoryIfPossible(tryFree) < tryFree) { |
| 469 | // Flush is necessary to free more space. |
| 470 | this->flushPending(); |
| 471 | // Free as much as possible to avoid oscillating around fMaxRecordingStorageBytes |
| 472 | // which could cause a high flushing frequency. |
| 473 | this->freeMemoryIfPossible(~0); |
| 474 | } |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 475 | storageAllocated = this->storageAllocatedForRecording(); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 476 | } |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 477 | |
| 478 | if (fNotificationClient && |
| 479 | storageAllocated != fPreviousStorageAllocated) { |
| 480 | fPreviousStorageAllocated = storageAllocated; |
| 481 | fNotificationClient->storageAllocatedForRecordingChanged(storageAllocated); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | SkCanvas* DeferredDevice::recordingCanvas() { |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 486 | return fRecordingCanvas; |
| 487 | } |
| 488 | |
| 489 | uint32_t DeferredDevice::getDeviceCapabilities() { |
| 490 | return fImmediateDevice->getDeviceCapabilities(); |
| 491 | } |
| 492 | |
| 493 | int DeferredDevice::width() const { |
| 494 | return fImmediateDevice->width(); |
| 495 | } |
| 496 | |
| 497 | int DeferredDevice::height() const { |
| 498 | return fImmediateDevice->height(); |
| 499 | } |
| 500 | |
| 501 | SkGpuRenderTarget* DeferredDevice::accessRenderTarget() { |
| 502 | this->flushPending(); |
| 503 | return fImmediateDevice->accessRenderTarget(); |
| 504 | } |
| 505 | |
| 506 | void DeferredDevice::writePixels(const SkBitmap& bitmap, |
| 507 | int x, int y, SkCanvas::Config8888 config8888) { |
| 508 | |
| 509 | if (x <= 0 && y <= 0 && (x + bitmap.width()) >= width() && |
| 510 | (y + bitmap.height()) >= height()) { |
| 511 | this->contentsCleared(); |
| 512 | } |
| 513 | |
| 514 | if (SkBitmap::kARGB_8888_Config == bitmap.config() && |
| 515 | SkCanvas::kNative_Premul_Config8888 != config8888 && |
| 516 | kPMColorAlias != config8888) { |
| 517 | //Special case config: no deferral |
| 518 | this->flushPending(); |
| 519 | fImmediateDevice->writePixels(bitmap, x, y, config8888); |
| 520 | return; |
| 521 | } |
| 522 | |
| 523 | SkPaint paint; |
| 524 | paint.setXfermodeMode(SkXfermode::kSrc_Mode); |
| 525 | if (shouldDrawImmediately(&bitmap, NULL)) { |
| 526 | this->flushPending(); |
| 527 | fImmediateCanvas->drawSprite(bitmap, x, y, &paint); |
| 528 | } else { |
| 529 | this->recordingCanvas()->drawSprite(bitmap, x, y, &paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 530 | this->recordedDrawCommand(); |
| 531 | |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 532 | } |
| 533 | } |
| 534 | |
| 535 | const SkBitmap& DeferredDevice::onAccessBitmap(SkBitmap*) { |
| 536 | this->flushPending(); |
| 537 | return fImmediateDevice->accessBitmap(false); |
| 538 | } |
| 539 | |
| 540 | SkDevice* DeferredDevice::onCreateCompatibleDevice( |
| 541 | SkBitmap::Config config, int width, int height, bool isOpaque, |
| 542 | Usage usage) { |
| 543 | |
| 544 | // Save layer usage not supported, and not required by SkDeferredCanvas. |
| 545 | SkASSERT(usage != kSaveLayer_Usage); |
| 546 | // Create a compatible non-deferred device. |
| 547 | SkAutoTUnref<SkDevice> compatibleDevice |
| 548 | (fImmediateDevice->createCompatibleDevice(config, width, height, |
| 549 | isOpaque)); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 550 | return SkNEW_ARGS(DeferredDevice, (compatibleDevice, fNotificationClient)); |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | bool DeferredDevice::onReadPixels( |
| 554 | const SkBitmap& bitmap, int x, int y, SkCanvas::Config8888 config8888) { |
| 555 | this->flushPending(); |
| 556 | return fImmediateCanvas->readPixels(const_cast<SkBitmap*>(&bitmap), |
| 557 | x, y, config8888); |
| 558 | } |
| 559 | |
| 560 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 561 | SkDeferredCanvas::SkDeferredCanvas() { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 562 | this->init(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 563 | } |
| 564 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 565 | SkDeferredCanvas::SkDeferredCanvas(SkDevice* device) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 566 | this->init(); |
| 567 | this->setDevice(device); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | SkDeferredCanvas::SkDeferredCanvas(SkDevice* device, |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 571 | NotificationClient* notificationClient) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 572 | this->init(); |
| 573 | this->setDevice(device); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 574 | this->setNotificationClient(notificationClient); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 575 | } |
| 576 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 577 | void SkDeferredCanvas::init() { |
junov@chromium.org | 5e5a095 | 2012-02-28 15:27:59 +0000 | [diff] [blame] | 578 | fDeferredDrawing = true; // On by default |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 579 | } |
| 580 | |
junov@chromium.org | bfeddae | 2012-07-23 13:35:14 +0000 | [diff] [blame] | 581 | void SkDeferredCanvas::setMaxRecordingStorage(size_t maxStorage) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 582 | this->validate(); |
junov@chromium.org | bfeddae | 2012-07-23 13:35:14 +0000 | [diff] [blame] | 583 | this->getDeferredDevice()->setMaxRecordingStorage(maxStorage); |
| 584 | } |
| 585 | |
junov@chromium.org | 2e14ba8 | 2012-08-07 14:26:57 +0000 | [diff] [blame] | 586 | size_t SkDeferredCanvas::storageAllocatedForRecording() const { |
| 587 | return this->getDeferredDevice()->storageAllocatedForRecording(); |
| 588 | } |
| 589 | |
| 590 | size_t SkDeferredCanvas::freeMemoryIfPossible(size_t bytesToFree) { |
junov@chromium.org | 2e14ba8 | 2012-08-07 14:26:57 +0000 | [diff] [blame] | 591 | return this->getDeferredDevice()->freeMemoryIfPossible(bytesToFree); |
junov@chromium.org | 2e14ba8 | 2012-08-07 14:26:57 +0000 | [diff] [blame] | 592 | } |
| 593 | |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 594 | void SkDeferredCanvas::recordedDrawCommand() { |
| 595 | if (fDeferredDrawing) { |
| 596 | this->getDeferredDevice()->recordedDrawCommand(); |
| 597 | } |
| 598 | } |
| 599 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 600 | void SkDeferredCanvas::validate() const { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 601 | SkASSERT(this->getDevice()); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 602 | } |
| 603 | |
junov@chromium.org | 5e5a095 | 2012-02-28 15:27:59 +0000 | [diff] [blame] | 604 | SkCanvas* SkDeferredCanvas::drawingCanvas() const { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 605 | this->validate(); |
| 606 | return fDeferredDrawing ? this->getDeferredDevice()->recordingCanvas() : |
| 607 | this->getDeferredDevice()->immediateCanvas(); |
junov@chromium.org | 5e5a095 | 2012-02-28 15:27:59 +0000 | [diff] [blame] | 608 | } |
| 609 | |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 610 | SkCanvas* SkDeferredCanvas::immediateCanvas() const { |
| 611 | this->validate(); |
| 612 | return this->getDeferredDevice()->immediateCanvas(); |
| 613 | } |
| 614 | |
| 615 | DeferredDevice* SkDeferredCanvas::getDeferredDevice() const { |
| 616 | return static_cast<DeferredDevice*>(this->getDevice()); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 617 | } |
| 618 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 619 | void SkDeferredCanvas::setDeferredDrawing(bool val) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 620 | this->validate(); // Must set device before calling this method |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 621 | if (val != fDeferredDrawing) { |
| 622 | if (fDeferredDrawing) { |
junov@chromium.org | 5e5a095 | 2012-02-28 15:27:59 +0000 | [diff] [blame] | 623 | // Going live. |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 624 | this->getDeferredDevice()->flushPending(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 625 | } |
| 626 | fDeferredDrawing = val; |
| 627 | } |
| 628 | } |
| 629 | |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 630 | bool SkDeferredCanvas::isDeferredDrawing() const { |
junov@chromium.org | b10a6bd | 2012-07-25 17:27:13 +0000 | [diff] [blame] | 631 | return fDeferredDrawing; |
| 632 | } |
| 633 | |
junov@chromium.org | 88e2914 | 2012-08-07 16:48:22 +0000 | [diff] [blame] | 634 | bool SkDeferredCanvas::isFreshFrame() const { |
| 635 | return this->getDeferredDevice()->isFreshFrame(); |
| 636 | } |
| 637 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 638 | SkDeferredCanvas::~SkDeferredCanvas() { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 639 | } |
| 640 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 641 | SkDevice* SkDeferredCanvas::setDevice(SkDevice* device) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 642 | this->INHERITED::setDevice(SkNEW_ARGS(DeferredDevice, (device)))->unref(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 643 | return device; |
| 644 | } |
| 645 | |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 646 | SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient( |
| 647 | NotificationClient* notificationClient) { |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 648 | |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 649 | DeferredDevice* deferredDevice = this->getDeferredDevice(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 650 | SkASSERT(deferredDevice); |
| 651 | if (deferredDevice) { |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 652 | deferredDevice->setNotificationClient(notificationClient); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 653 | } |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 654 | return notificationClient; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | bool SkDeferredCanvas::isFullFrame(const SkRect* rect, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 658 | const SkPaint* paint) const { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 659 | SkCanvas* canvas = this->drawingCanvas(); |
| 660 | SkISize canvasSize = this->getDeviceSize(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 661 | if (rect) { |
| 662 | if (!canvas->getTotalMatrix().rectStaysRect()) { |
| 663 | return false; // conservative |
| 664 | } |
| 665 | |
| 666 | SkRect transformedRect; |
| 667 | canvas->getTotalMatrix().mapRect(&transformedRect, *rect); |
| 668 | |
| 669 | if (paint) { |
| 670 | SkPaint::Style paintStyle = paint->getStyle(); |
| 671 | if (!(paintStyle == SkPaint::kFill_Style || |
| 672 | paintStyle == SkPaint::kStrokeAndFill_Style)) { |
| 673 | return false; |
| 674 | } |
| 675 | if (paint->getMaskFilter() || paint->getLooper() |
| 676 | || paint->getPathEffect() || paint->getImageFilter()) { |
| 677 | return false; // conservative |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | // The following test holds with AA enabled, and is conservative |
| 682 | // by a 0.5 pixel margin with AA disabled |
junov@chromium.org | b1e218e | 2012-02-13 22:27:58 +0000 | [diff] [blame] | 683 | if (transformedRect.fLeft > SkIntToScalar(0) || |
| 684 | transformedRect.fTop > SkIntToScalar(0) || |
| 685 | transformedRect.fRight < SkIntToScalar(canvasSize.fWidth) || |
| 686 | transformedRect.fBottom < SkIntToScalar(canvasSize.fHeight)) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 687 | return false; |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | switch (canvas->getClipType()) { |
| 692 | case SkCanvas::kRect_ClipType : |
| 693 | { |
| 694 | SkIRect bounds; |
| 695 | canvas->getClipDeviceBounds(&bounds); |
| 696 | if (bounds.fLeft > 0 || bounds.fTop > 0 || |
| 697 | bounds.fRight < canvasSize.fWidth || |
| 698 | bounds.fBottom < canvasSize.fHeight) |
| 699 | return false; |
| 700 | } |
| 701 | break; |
| 702 | case SkCanvas::kComplex_ClipType : |
| 703 | return false; // conservative |
| 704 | case SkCanvas::kEmpty_ClipType: |
| 705 | default: |
| 706 | break; |
| 707 | }; |
| 708 | |
| 709 | return true; |
| 710 | } |
| 711 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 712 | int SkDeferredCanvas::save(SaveFlags flags) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 713 | this->drawingCanvas()->save(flags); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 714 | int val = this->INHERITED::save(flags); |
| 715 | this->recordedDrawCommand(); |
| 716 | |
| 717 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | int SkDeferredCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 721 | SaveFlags flags) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 722 | this->drawingCanvas()->saveLayer(bounds, paint, flags); |
junov@chromium.org | a907ac3 | 2012-02-24 21:54:07 +0000 | [diff] [blame] | 723 | int count = this->INHERITED::save(flags); |
| 724 | this->clipRectBounds(bounds, flags, NULL); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 725 | this->recordedDrawCommand(); |
| 726 | |
junov@chromium.org | a907ac3 | 2012-02-24 21:54:07 +0000 | [diff] [blame] | 727 | return count; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 728 | } |
| 729 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 730 | void SkDeferredCanvas::restore() { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 731 | this->drawingCanvas()->restore(); |
junov@chromium.org | a907ac3 | 2012-02-24 21:54:07 +0000 | [diff] [blame] | 732 | this->INHERITED::restore(); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 733 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 734 | } |
| 735 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 736 | bool SkDeferredCanvas::isDrawingToLayer() const { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 737 | return this->drawingCanvas()->isDrawingToLayer(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 738 | } |
| 739 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 740 | bool SkDeferredCanvas::translate(SkScalar dx, SkScalar dy) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 741 | this->drawingCanvas()->translate(dx, dy); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 742 | bool val = this->INHERITED::translate(dx, dy); |
| 743 | this->recordedDrawCommand(); |
| 744 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 745 | } |
| 746 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 747 | bool SkDeferredCanvas::scale(SkScalar sx, SkScalar sy) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 748 | this->drawingCanvas()->scale(sx, sy); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 749 | bool val = this->INHERITED::scale(sx, sy); |
| 750 | this->recordedDrawCommand(); |
| 751 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 752 | } |
| 753 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 754 | bool SkDeferredCanvas::rotate(SkScalar degrees) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 755 | this->drawingCanvas()->rotate(degrees); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 756 | bool val = this->INHERITED::rotate(degrees); |
| 757 | this->recordedDrawCommand(); |
| 758 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 759 | } |
| 760 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 761 | bool SkDeferredCanvas::skew(SkScalar sx, SkScalar sy) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 762 | this->drawingCanvas()->skew(sx, sy); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 763 | bool val = this->INHERITED::skew(sx, sy); |
| 764 | this->recordedDrawCommand(); |
| 765 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 766 | } |
| 767 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 768 | bool SkDeferredCanvas::concat(const SkMatrix& matrix) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 769 | this->drawingCanvas()->concat(matrix); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 770 | bool val = this->INHERITED::concat(matrix); |
| 771 | this->recordedDrawCommand(); |
| 772 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 773 | } |
| 774 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 775 | void SkDeferredCanvas::setMatrix(const SkMatrix& matrix) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 776 | this->drawingCanvas()->setMatrix(matrix); |
junov@chromium.org | a907ac3 | 2012-02-24 21:54:07 +0000 | [diff] [blame] | 777 | this->INHERITED::setMatrix(matrix); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 778 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | bool SkDeferredCanvas::clipRect(const SkRect& rect, |
| 782 | SkRegion::Op op, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 783 | bool doAntiAlias) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 784 | this->drawingCanvas()->clipRect(rect, op, doAntiAlias); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 785 | bool val = this->INHERITED::clipRect(rect, op, doAntiAlias); |
| 786 | this->recordedDrawCommand(); |
| 787 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | bool SkDeferredCanvas::clipPath(const SkPath& path, |
| 791 | SkRegion::Op op, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 792 | bool doAntiAlias) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 793 | this->drawingCanvas()->clipPath(path, op, doAntiAlias); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 794 | bool val = this->INHERITED::clipPath(path, op, doAntiAlias); |
| 795 | this->recordedDrawCommand(); |
| 796 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | bool SkDeferredCanvas::clipRegion(const SkRegion& deviceRgn, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 800 | SkRegion::Op op) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 801 | this->drawingCanvas()->clipRegion(deviceRgn, op); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 802 | bool val = this->INHERITED::clipRegion(deviceRgn, op); |
| 803 | this->recordedDrawCommand(); |
| 804 | return val; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 805 | } |
| 806 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 807 | void SkDeferredCanvas::clear(SkColor color) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 808 | // purge pending commands |
| 809 | if (fDeferredDrawing) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 810 | this->getDeferredDevice()->contentsCleared(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 811 | } |
| 812 | |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 813 | this->drawingCanvas()->clear(color); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 814 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 815 | } |
| 816 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 817 | void SkDeferredCanvas::drawPaint(const SkPaint& paint) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 818 | if (fDeferredDrawing && this->isFullFrame(NULL, &paint) && |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 819 | isPaintOpaque(&paint)) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 820 | this->getDeferredDevice()->contentsCleared(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 821 | } |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 822 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 823 | this->drawingCanvas()->drawPaint(paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 824 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 825 | } |
| 826 | |
| 827 | void SkDeferredCanvas::drawPoints(PointMode mode, size_t count, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 828 | const SkPoint pts[], const SkPaint& paint) { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 829 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 830 | this->drawingCanvas()->drawPoints(mode, count, pts, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 831 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 832 | } |
| 833 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 834 | void SkDeferredCanvas::drawRect(const SkRect& rect, const SkPaint& paint) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 835 | if (fDeferredDrawing && this->isFullFrame(&rect, &paint) && |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 836 | isPaintOpaque(&paint)) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 837 | this->getDeferredDevice()->contentsCleared(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 838 | } |
| 839 | |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 840 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 841 | this->drawingCanvas()->drawRect(rect, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 842 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 843 | } |
| 844 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 845 | void SkDeferredCanvas::drawPath(const SkPath& path, const SkPaint& paint) { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 846 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 847 | this->drawingCanvas()->drawPath(path, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 848 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | void SkDeferredCanvas::drawBitmap(const SkBitmap& bitmap, SkScalar left, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 852 | SkScalar top, const SkPaint* paint) { |
junov@chromium.org | 8f9ecbd | 2012-02-13 21:53:45 +0000 | [diff] [blame] | 853 | SkRect bitmapRect = SkRect::MakeXYWH(left, top, |
| 854 | SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height())); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 855 | if (fDeferredDrawing && |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 856 | this->isFullFrame(&bitmapRect, paint) && |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 857 | isPaintOpaque(paint, &bitmap)) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 858 | this->getDeferredDevice()->contentsCleared(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 859 | } |
| 860 | |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 861 | AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 862 | this->drawingCanvas()->drawBitmap(bitmap, left, top, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 863 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | void SkDeferredCanvas::drawBitmapRect(const SkBitmap& bitmap, |
| 867 | const SkIRect* src, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 868 | const SkRect& dst, |
| 869 | const SkPaint* paint) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 870 | if (fDeferredDrawing && |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 871 | this->isFullFrame(&dst, paint) && |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 872 | isPaintOpaque(paint, &bitmap)) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 873 | this->getDeferredDevice()->contentsCleared(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 874 | } |
| 875 | |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 876 | AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 877 | this->drawingCanvas()->drawBitmapRect(bitmap, src, dst, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 878 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 879 | } |
| 880 | |
| 881 | |
| 882 | void SkDeferredCanvas::drawBitmapMatrix(const SkBitmap& bitmap, |
| 883 | const SkMatrix& m, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 884 | const SkPaint* paint) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 885 | // TODO: reset recording canvas if paint+bitmap is opaque and clip rect |
| 886 | // covers canvas entirely and transformed bitmap covers canvas entirely |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 887 | AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 888 | this->drawingCanvas()->drawBitmapMatrix(bitmap, m, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 889 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | void SkDeferredCanvas::drawBitmapNine(const SkBitmap& bitmap, |
| 893 | const SkIRect& center, const SkRect& dst, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 894 | const SkPaint* paint) { |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 895 | // TODO: reset recording canvas if paint+bitmap is opaque and clip rect |
| 896 | // covers canvas entirely and dst covers canvas entirely |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 897 | AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 898 | this->drawingCanvas()->drawBitmapNine(bitmap, center, dst, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 899 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | void SkDeferredCanvas::drawSprite(const SkBitmap& bitmap, int left, int top, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 903 | const SkPaint* paint) { |
junov@chromium.org | 8f9ecbd | 2012-02-13 21:53:45 +0000 | [diff] [blame] | 904 | SkRect bitmapRect = SkRect::MakeXYWH( |
| 905 | SkIntToScalar(left), |
| 906 | SkIntToScalar(top), |
| 907 | SkIntToScalar(bitmap.width()), |
| 908 | SkIntToScalar(bitmap.height())); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 909 | if (fDeferredDrawing && |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 910 | this->isFullFrame(&bitmapRect, paint) && |
junov@chromium.org | 87f982c | 2012-02-23 21:34:34 +0000 | [diff] [blame] | 911 | isPaintOpaque(paint, &bitmap)) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 912 | this->getDeferredDevice()->contentsCleared(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 913 | } |
| 914 | |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 915 | AutoImmediateDrawIfNeeded autoDraw(*this, &bitmap, paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 916 | this->drawingCanvas()->drawSprite(bitmap, left, top, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 917 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | void SkDeferredCanvas::drawText(const void* text, size_t byteLength, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 921 | SkScalar x, SkScalar y, const SkPaint& paint) { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 922 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 923 | this->drawingCanvas()->drawText(text, byteLength, x, y, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 924 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 925 | } |
| 926 | |
| 927 | void SkDeferredCanvas::drawPosText(const void* text, size_t byteLength, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 928 | const SkPoint pos[], const SkPaint& paint) { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 929 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 930 | this->drawingCanvas()->drawPosText(text, byteLength, pos, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 931 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | void SkDeferredCanvas::drawPosTextH(const void* text, size_t byteLength, |
| 935 | const SkScalar xpos[], SkScalar constY, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 936 | const SkPaint& paint) { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 937 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 938 | this->drawingCanvas()->drawPosTextH(text, byteLength, xpos, constY, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 939 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | void SkDeferredCanvas::drawTextOnPath(const void* text, size_t byteLength, |
| 943 | const SkPath& path, |
| 944 | const SkMatrix* matrix, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 945 | const SkPaint& paint) { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 946 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 947 | this->drawingCanvas()->drawTextOnPath(text, byteLength, path, matrix, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 948 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 949 | } |
| 950 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 951 | void SkDeferredCanvas::drawPicture(SkPicture& picture) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 952 | this->drawingCanvas()->drawPicture(picture); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 953 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | void SkDeferredCanvas::drawVertices(VertexMode vmode, int vertexCount, |
| 957 | const SkPoint vertices[], |
| 958 | const SkPoint texs[], |
| 959 | const SkColor colors[], SkXfermode* xmode, |
| 960 | const uint16_t indices[], int indexCount, |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 961 | const SkPaint& paint) { |
junov@chromium.org | 10f7f97 | 2012-07-31 21:01:51 +0000 | [diff] [blame] | 962 | AutoImmediateDrawIfNeeded autoDraw(*this, &paint); |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 963 | this->drawingCanvas()->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode, |
| 964 | indices, indexCount, paint); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 965 | this->recordedDrawCommand(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 966 | } |
| 967 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 968 | SkBounder* SkDeferredCanvas::setBounder(SkBounder* bounder) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 969 | this->drawingCanvas()->setBounder(bounder); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 970 | this->INHERITED::setBounder(bounder); |
| 971 | this->recordedDrawCommand(); |
| 972 | return bounder; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 973 | } |
| 974 | |
junov@chromium.org | c16ca92 | 2012-02-24 22:06:27 +0000 | [diff] [blame] | 975 | SkDrawFilter* SkDeferredCanvas::setDrawFilter(SkDrawFilter* filter) { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 976 | this->drawingCanvas()->setDrawFilter(filter); |
junov@chromium.org | 9ed02b9 | 2012-08-14 13:36:26 +0000 | [diff] [blame] | 977 | this->INHERITED::setDrawFilter(filter); |
| 978 | this->recordedDrawCommand(); |
| 979 | return filter; |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | SkCanvas* SkDeferredCanvas::canvasForDrawIter() { |
junov@chromium.org | 9060c9b | 2012-08-07 15:14:01 +0000 | [diff] [blame] | 983 | return this->drawingCanvas(); |
junov@google.com | 4370aed | 2012-01-18 16:21:08 +0000 | [diff] [blame] | 984 | } |