Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(414)

Side by Side Diff: src/lazy/SkDiscardablePixelRef.h

Issue 103033002: Big Cleanup: SkBitmapFactory, SkLazyPixelRef, SkImageCache (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase one last time Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/lazy/SkDiscardableMemoryPool.cpp ('k') | src/lazy/SkDiscardablePixelRef.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "SkPixelRef.h" 12 #include "SkPixelRef.h"
12 #include "SkImageGenerator.h" 13 #include "SkImageGenerator.h"
13 #include "SkImageInfo.h" 14 #include "SkImageInfo.h"
14 15
15 class SkDiscardableMemory;
16
17 /** 16 /**
18 * An interface that allows a purgable PixelRef to re-decode an image. 17 * An interface that allows a purgable PixelRef to re-decode an image.
19 */ 18 */
20 19
20 typedef SkDiscardableMemory* (*SkDiscardableMemoryFactory)(size_t bytes);
21
22
21 class SkDiscardablePixelRef : public SkPixelRef { 23 class SkDiscardablePixelRef : public SkPixelRef {
22 public: 24 public:
23 /** 25 /**
24 * Takes ownership of SkImageGenerator. If this method fails for 26 * Takes ownership of SkImageGenerator. If this method fails for
25 * whatever reason, it will return false and immediatetely delete 27 * whatever reason, it will return false and immediatetely delete
26 * the generator. If it succeeds, it will modify destination 28 * the generator. If it succeeds, it will modify destination
27 * bitmap. 29 * bitmap.
28 * 30 *
29 * If Install fails or when the SkDiscardablePixelRef that is 31 * If Install fails or when the SkDiscardablePixelRef that is
30 * installed into destination is destroyed, it will call 32 * installed into destination is destroyed, it will call
31 * SkDELETE() on the generator. Therefore, generator should be 33 * SkDELETE() on the generator. Therefore, generator should be
32 * allocated with SkNEW() or SkNEW_ARGS(). 34 * allocated with SkNEW() or SkNEW_ARGS().
35 *
36 * @param destination Upon success, this bitmap will be
37 * configured and have a pixelref installed.
38 *
39 * @param factory If not NULL, this object will be used as a
40 * source of discardable memory when decoding. If NULL, then
41 * SkDiscardableMemory::Create() will be called.
42 *
43 * @return true iff successful.
33 */ 44 */
34 static bool Install(SkImageGenerator* generator, SkBitmap* destination); 45 static bool Install(SkImageGenerator* generator,
46 SkBitmap* destination,
47 SkDiscardableMemory::Factory* factory = NULL);
35 48
36 SK_DECLARE_UNFLATTENABLE_OBJECT() 49 SK_DECLARE_UNFLATTENABLE_OBJECT()
37 50
38 protected: 51 protected:
39 ~SkDiscardablePixelRef(); 52 ~SkDiscardablePixelRef();
40 virtual void* onLockPixels(SkColorTable**) SK_OVERRIDE; 53 virtual void* onLockPixels(SkColorTable**) SK_OVERRIDE;
41 virtual void onUnlockPixels() SK_OVERRIDE; 54 virtual void onUnlockPixels() SK_OVERRIDE;
42 virtual bool onLockPixelsAreWritable() const SK_OVERRIDE { return false; } 55 virtual bool onLockPixelsAreWritable() const SK_OVERRIDE { return false; }
43 56
44 virtual SkData* onRefEncodedData() SK_OVERRIDE { 57 virtual SkData* onRefEncodedData() SK_OVERRIDE {
45 return fGenerator->refEncodedData(); 58 return fGenerator->refEncodedData();
46 } 59 }
47 60
48 private: 61 private:
49 SkImageGenerator* const fGenerator; 62 SkImageGenerator* const fGenerator;
63 SkDiscardableMemory::Factory* const fDMFactory;
50 const SkImageInfo fInfo; 64 const SkImageInfo fInfo;
51 const size_t fSize; // size of memory to be allocated 65 const size_t fSize; // size of memory to be allocated
52 const size_t fRowBytes; 66 const size_t fRowBytes;
53 // These const members should not change over the life of the 67 // These const members should not change over the life of the
54 // PixelRef, since the SkBitmap doesn't expect them to change. 68 // PixelRef, since the SkBitmap doesn't expect them to change.
55 69
56 SkDiscardableMemory* fDiscardableMemory; 70 SkDiscardableMemory* fDiscardableMemory;
57 71
58 /* Takes ownership of SkImageGenerator. */ 72 /* Takes ownership of SkImageGenerator. */
59 SkDiscardablePixelRef(SkImageGenerator* generator, 73 SkDiscardablePixelRef(SkImageGenerator* generator,
60 const SkImageInfo& info, 74 const SkImageInfo& info,
61 size_t size, 75 size_t size,
62 size_t rowBytes); 76 size_t rowBytes,
77 SkDiscardableMemory::Factory* factory);
63 }; 78 };
64 #endif // SkDiscardablePixelRef_DEFINED 79 #endif // SkDiscardablePixelRef_DEFINED
OLDNEW
« no previous file with comments | « src/lazy/SkDiscardableMemoryPool.cpp ('k') | src/lazy/SkDiscardablePixelRef.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698