Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkSurface_Base.h" | 8 #include "SkSurface_Base.h" |
| 9 #include "SkImagePriv.h" | 9 #include "SkImagePriv.h" |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 } | 52 } |
| 53 | 53 |
| 54 SkImage* SkSurface_Base::getCachedImage() { | 54 SkImage* SkSurface_Base::getCachedImage() { |
| 55 if (NULL == fCachedImage) { | 55 if (NULL == fCachedImage) { |
| 56 fCachedImage = this->onNewImageSnapshot(); | 56 fCachedImage = this->onNewImageSnapshot(); |
| 57 this->installIntoCanvasForDirtyNotification(); | 57 this->installIntoCanvasForDirtyNotification(); |
| 58 } | 58 } |
| 59 return fCachedImage; | 59 return fCachedImage; |
| 60 } | 60 } |
| 61 | 61 |
| 62 void SkSurface_Base::aboutToDraw(SkCanvas* canvas) { | 62 void SkSurface_Base::aboutToDraw() { |
| 63 this->dirtyGenerationID(); | 63 this->dirtyGenerationID(); |
| 64 | 64 |
| 65 if (canvas) { | 65 if (NULL == fCachedImage || NULL == fCachedCanvas) { |
|
reed1
2013/04/16 16:04:14
Not sure we should do nothing if we have an image
Justin Novosad
2013/04/16 18:11:47
You're right I was completely ignoring that use ca
| |
| 66 SkASSERT(canvas == fCachedCanvas); | 66 return; |
| 67 SkASSERT(canvas->getSurfaceBase() == this); | |
| 68 canvas->setSurfaceBase(NULL); | |
| 69 } | 67 } |
| 70 | 68 |
| 71 if (fCachedImage) { | 69 SkASSERT(fCachedCanvas->getSurfaceBase() == this); |
| 72 // the surface may need to fork its backend, if its sharing it with | 70 fCachedCanvas->setSurfaceBase(NULL); |
| 73 // the cached image. Note: we only call if there is an outstanding owner | |
| 74 // on the image (besides us). | |
| 75 if (fCachedImage->getRefCnt() > 1) { | |
| 76 this->onCopyOnWrite(fCachedImage, canvas); | |
| 77 } | |
| 78 | 71 |
| 79 // regardless of copy-on-write, we must drop our cached image now, so | 72 // the surface may need to fork its backend, if its sharing it with |
| 80 // that the next request will get our new contents. | 73 // the cached image. Note: we only call if there is an outstanding owner |
| 81 fCachedImage->unref(); | 74 // on the image (besides us). |
| 82 fCachedImage = NULL; | 75 if (fCachedImage->getRefCnt() > 1) { |
| 76 this->onCopyOnWrite(); | |
| 83 } | 77 } |
| 78 | |
| 79 // regardless of copy-on-write, we must drop our cached image now, so | |
| 80 // that the next request will get our new contents. | |
| 81 fCachedImage->unref(); | |
| 82 fCachedImage = NULL; | |
| 84 } | 83 } |
| 85 | 84 |
| 86 uint32_t SkSurface_Base::newGenerationID() { | 85 uint32_t SkSurface_Base::newGenerationID() { |
| 87 this->installIntoCanvasForDirtyNotification(); | 86 this->installIntoCanvasForDirtyNotification(); |
| 88 | 87 |
| 89 static int32_t gID; | 88 static int32_t gID; |
| 90 return sk_atomic_inc(&gID) + 1; | 89 return sk_atomic_inc(&gID) + 1; |
| 91 } | 90 } |
| 92 | 91 |
| 93 static SkSurface_Base* asSB(SkSurface* surface) { | 92 static SkSurface_Base* asSB(SkSurface* surface) { |
| 94 return static_cast<SkSurface_Base*>(surface); | 93 return static_cast<SkSurface_Base*>(surface); |
| 95 } | 94 } |
| 96 | 95 |
| 97 /////////////////////////////////////////////////////////////////////////////// | 96 /////////////////////////////////////////////////////////////////////////////// |
| 98 | 97 |
| 99 SkSurface::SkSurface(int width, int height) : fWidth(width), fHeight(height) { | 98 SkSurface::SkSurface(int width, int height) : fWidth(width), fHeight(height) { |
| 100 SkASSERT(width >= 0); | 99 SkASSERT(width >= 0); |
| 101 SkASSERT(height >= 0); | 100 SkASSERT(height >= 0); |
| 102 fGenerationID = 0; | 101 fGenerationID = 0; |
| 103 } | 102 } |
| 104 | 103 |
| 105 uint32_t SkSurface::generationID() { | 104 uint32_t SkSurface::generationID() { |
| 106 if (0 == fGenerationID) { | 105 if (0 == fGenerationID) { |
| 107 fGenerationID = asSB(this)->newGenerationID(); | 106 fGenerationID = asSB(this)->newGenerationID(); |
| 108 } | 107 } |
| 109 return fGenerationID; | 108 return fGenerationID; |
| 110 } | 109 } |
| 111 | 110 |
| 112 void SkSurface::notifyContentChanged() { | 111 void SkSurface::notifyContentChanged() { |
| 113 asSB(this)->aboutToDraw(NULL); | 112 asSB(this)->aboutToDraw(); |
| 114 } | 113 } |
| 115 | 114 |
| 116 SkCanvas* SkSurface::getCanvas() { | 115 SkCanvas* SkSurface::getCanvas() { |
| 117 return asSB(this)->getCachedCanvas(); | 116 return asSB(this)->getCachedCanvas(); |
| 118 } | 117 } |
| 119 | 118 |
| 120 SkImage* SkSurface::newImageSnapshot() { | 119 SkImage* SkSurface::newImageSnapshot() { |
| 121 SkImage* image = asSB(this)->getCachedImage(); | 120 SkImage* image = asSB(this)->getCachedImage(); |
| 122 SkSafeRef(image); // the caller will call unref() to balance this | 121 SkSafeRef(image); // the caller will call unref() to balance this |
| 123 return image; | 122 return image; |
| 124 } | 123 } |
| 125 | 124 |
| 126 SkSurface* SkSurface::newSurface(const SkImage::Info& info) { | 125 SkSurface* SkSurface::newSurface(const SkImage::Info& info) { |
| 127 return asSB(this)->onNewSurface(info); | 126 return asSB(this)->onNewSurface(info); |
| 128 } | 127 } |
| 129 | 128 |
| 130 void SkSurface::draw(SkCanvas* canvas, SkScalar x, SkScalar y, | 129 void SkSurface::draw(SkCanvas* canvas, SkScalar x, SkScalar y, |
| 131 const SkPaint* paint) { | 130 const SkPaint* paint) { |
| 132 return asSB(this)->onDraw(canvas, x, y, paint); | 131 return asSB(this)->onDraw(canvas, x, y, paint); |
| 133 } | 132 } |
| OLD | NEW |