reed@google.com | c906204 | 2012-07-30 18:06:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 8 | #include "SkSurface_Base.h" |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 9 | #include "SkImagePriv.h" |
| 10 | #include "SkCanvas.h" |
| 11 | |
| 12 | /////////////////////////////////////////////////////////////////////////////// |
| 13 | |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 14 | SkSurface_Base::SkSurface_Base(int width, int height) : INHERITED(width, height) { |
| 15 | fCachedCanvas = NULL; |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 16 | fCachedImage = NULL; |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 17 | } |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 18 | |
reed@google.com | 1360c52 | 2014-01-08 21:25:26 +0000 | [diff] [blame] | 19 | SkSurface_Base::SkSurface_Base(const SkImageInfo& info) : INHERITED(info) { |
| 20 | fCachedCanvas = NULL; |
| 21 | fCachedImage = NULL; |
| 22 | } |
| 23 | |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 24 | SkSurface_Base::~SkSurface_Base() { |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 25 | // in case the canvas outsurvives us, we null the callback |
| 26 | if (fCachedCanvas) { |
| 27 | fCachedCanvas->setSurfaceBase(NULL); |
| 28 | } |
| 29 | |
| 30 | SkSafeUnref(fCachedImage); |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 31 | SkSafeUnref(fCachedCanvas); |
| 32 | } |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 33 | |
| 34 | void SkSurface_Base::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y, |
| 35 | const SkPaint* paint) { |
junov@chromium.org | 5ee449a | 2013-04-12 20:20:50 +0000 | [diff] [blame] | 36 | SkImage* image = this->newImageSnapshot(); |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 37 | if (image) { |
| 38 | image->draw(canvas, x, y, paint); |
| 39 | image->unref(); |
| 40 | } |
| 41 | } |
| 42 | |
commit-bot@chromium.org | c4c9870 | 2013-04-22 14:28:01 +0000 | [diff] [blame] | 43 | void SkSurface_Base::aboutToDraw(ContentChangeMode mode) { |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 44 | this->dirtyGenerationID(); |
| 45 | |
junov@chromium.org | acea3ef | 2013-04-16 19:41:09 +0000 | [diff] [blame] | 46 | if (NULL != fCachedCanvas) { |
| 47 | SkASSERT(fCachedCanvas->getSurfaceBase() == this || \ |
| 48 | NULL == fCachedCanvas->getSurfaceBase()); |
| 49 | fCachedCanvas->setSurfaceBase(NULL); |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 50 | } |
| 51 | |
junov@chromium.org | acea3ef | 2013-04-16 19:41:09 +0000 | [diff] [blame] | 52 | if (NULL != fCachedImage) { |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 53 | // the surface may need to fork its backend, if its sharing it with |
| 54 | // the cached image. Note: we only call if there is an outstanding owner |
| 55 | // on the image (besides us). |
bungeman@google.com | f64c684 | 2013-07-19 23:18:52 +0000 | [diff] [blame] | 56 | if (!fCachedImage->unique()) { |
commit-bot@chromium.org | c4c9870 | 2013-04-22 14:28:01 +0000 | [diff] [blame] | 57 | this->onCopyOnWrite(mode); |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | // regardless of copy-on-write, we must drop our cached image now, so |
| 61 | // that the next request will get our new contents. |
| 62 | fCachedImage->unref(); |
| 63 | fCachedImage = NULL; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | uint32_t SkSurface_Base::newGenerationID() { |
| 68 | this->installIntoCanvasForDirtyNotification(); |
| 69 | |
| 70 | static int32_t gID; |
| 71 | return sk_atomic_inc(&gID) + 1; |
| 72 | } |
| 73 | |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 74 | static SkSurface_Base* asSB(SkSurface* surface) { |
| 75 | return static_cast<SkSurface_Base*>(surface); |
| 76 | } |
| 77 | |
| 78 | /////////////////////////////////////////////////////////////////////////////// |
| 79 | |
| 80 | SkSurface::SkSurface(int width, int height) : fWidth(width), fHeight(height) { |
reed@google.com | 1360c52 | 2014-01-08 21:25:26 +0000 | [diff] [blame] | 81 | SkASSERT(fWidth >= 0); |
| 82 | SkASSERT(fHeight >= 0); |
| 83 | fGenerationID = 0; |
| 84 | } |
| 85 | |
| 86 | SkSurface::SkSurface(const SkImageInfo& info) |
| 87 | : fWidth(info.fWidth) |
| 88 | , fHeight(info.fHeight) |
| 89 | { |
| 90 | SkASSERT(fWidth >= 0); |
| 91 | SkASSERT(fHeight >= 0); |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 92 | fGenerationID = 0; |
| 93 | } |
| 94 | |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 95 | uint32_t SkSurface::generationID() { |
| 96 | if (0 == fGenerationID) { |
| 97 | fGenerationID = asSB(this)->newGenerationID(); |
| 98 | } |
| 99 | return fGenerationID; |
| 100 | } |
| 101 | |
commit-bot@chromium.org | c4c9870 | 2013-04-22 14:28:01 +0000 | [diff] [blame] | 102 | void SkSurface::notifyContentWillChange(ContentChangeMode mode) { |
| 103 | asSB(this)->aboutToDraw(mode); |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 104 | } |
| 105 | |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 106 | SkCanvas* SkSurface::getCanvas() { |
| 107 | return asSB(this)->getCachedCanvas(); |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 108 | } |
| 109 | |
junov@chromium.org | 5ee449a | 2013-04-12 20:20:50 +0000 | [diff] [blame] | 110 | SkImage* SkSurface::newImageSnapshot() { |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 111 | SkImage* image = asSB(this)->getCachedImage(); |
| 112 | SkSafeRef(image); // the caller will call unref() to balance this |
| 113 | return image; |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 114 | } |
| 115 | |
reed@google.com | 2bd8b81 | 2013-11-01 13:46:54 +0000 | [diff] [blame] | 116 | SkSurface* SkSurface::newSurface(const SkImageInfo& info) { |
mike@reedtribe.org | b947625 | 2012-11-15 02:37:45 +0000 | [diff] [blame] | 117 | return asSB(this)->onNewSurface(info); |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | void SkSurface::draw(SkCanvas* canvas, SkScalar x, SkScalar y, |
| 121 | const SkPaint* paint) { |
| 122 | return asSB(this)->onDraw(canvas, x, y, paint); |
| 123 | } |
commit-bot@chromium.org | c3bd8af | 2014-02-13 17:14:46 +0000 | [diff] [blame^] | 124 | |
| 125 | const void* SkSurface::peekPixels(SkImageInfo* info, size_t* rowBytes) { |
| 126 | return this->getCanvas()->peekPixels(info, rowBytes); |
| 127 | } |
| 128 | |