| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 #ifndef SkDiscardablePixelRef_DEFINED | 8 #ifndef SkDiscardablePixelRef_DEFINED |
| 9 #define SkDiscardablePixelRef_DEFINED | 9 #define SkDiscardablePixelRef_DEFINED |
| 10 | 10 |
| 11 #include "SkDiscardableMemory.h" | 11 #include "SkDiscardableMemory.h" |
| 12 #include "SkImageGenerator.h" | 12 #include "SkImageGenerator.h" |
| 13 #include "SkImageInfo.h" | 13 #include "SkImageInfo.h" |
| 14 #include "SkPixelRef.h" | 14 #include "SkPixelRef.h" |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 * A PixelRef backed by SkDiscardableMemory, with the ability to | 17 * A PixelRef backed by SkDiscardableMemory, with the ability to |
| 18 * re-generate the pixels (via a SkImageGenerator) if the DM is | 18 * re-generate the pixels (via a SkImageGenerator) if the DM is |
| 19 * purged. | 19 * purged. |
| 20 */ | 20 */ |
| 21 class SkDiscardablePixelRef : public SkPixelRef { | 21 class SkDiscardablePixelRef : public SkPixelRef { |
| 22 public: | 22 public: |
| 23 SK_DECLARE_INST_COUNT(SkDiscardablePixelRef) | 23 SK_DECLARE_INST_COUNT(SkDiscardablePixelRef) |
| 24 | 24 |
| 25 protected: | 25 protected: |
| 26 ~SkDiscardablePixelRef(); | 26 ~SkDiscardablePixelRef(); |
| 27 | 27 |
| 28 virtual bool onNewLockPixels(LockRec*) SK_OVERRIDE; | 28 bool onNewLockPixels(LockRec*) SK_OVERRIDE; |
| 29 virtual void onUnlockPixels() SK_OVERRIDE; | 29 void onUnlockPixels() SK_OVERRIDE; |
| 30 virtual bool onLockPixelsAreWritable() const SK_OVERRIDE { return false; } | 30 bool onLockPixelsAreWritable() const SK_OVERRIDE { return false; } |
| 31 | 31 |
| 32 virtual SkData* onRefEncodedData() SK_OVERRIDE { | 32 SkData* onRefEncodedData() SK_OVERRIDE { |
| 33 return fGenerator->refEncodedData(); | 33 return fGenerator->refEncodedData(); |
| 34 } | 34 } |
| 35 | 35 |
| 36 private: | 36 private: |
| 37 SkImageGenerator* const fGenerator; | 37 SkImageGenerator* const fGenerator; |
| 38 SkDiscardableMemory::Factory* const fDMFactory; | 38 SkDiscardableMemory::Factory* const fDMFactory; |
| 39 const size_t fRowBytes; | 39 const size_t fRowBytes; |
| 40 // These const members should not change over the life of the | 40 // These const members should not change over the life of the |
| 41 // PixelRef, since the SkBitmap doesn't expect them to change. | 41 // PixelRef, since the SkBitmap doesn't expect them to change. |
| 42 | 42 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 55 return fGenerator->getYUV8Planes(sizes, planes, rowBytes, colorSpace); | 55 return fGenerator->getYUV8Planes(sizes, planes, rowBytes, colorSpace); |
| 56 } | 56 } |
| 57 | 57 |
| 58 friend bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap*, | 58 friend bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap*, |
| 59 SkDiscardableMemory::Factory*); | 59 SkDiscardableMemory::Factory*); |
| 60 | 60 |
| 61 typedef SkPixelRef INHERITED; | 61 typedef SkPixelRef INHERITED; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 #endif // SkDiscardablePixelRef_DEFINED | 64 #endif // SkDiscardablePixelRef_DEFINED |
| OLD | NEW |