OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2008 The Android Open Source Project | 3 * Copyright 2008 The Android Open Source Project |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 | 9 |
10 #ifndef SkImageRef_GlobalPool_DEFINED | 10 #ifndef SkImageRef_GlobalPool_DEFINED |
11 #define SkImageRef_GlobalPool_DEFINED | 11 #define SkImageRef_GlobalPool_DEFINED |
12 | 12 |
13 #include "SkImageRef.h" | 13 #include "SkImageRef.h" |
14 | 14 |
15 class SkImageRef_GlobalPool : public SkImageRef { | 15 class SkImageRef_GlobalPool : public SkImageRef { |
16 public: | 16 public: |
17 // if pool is null, use the global pool | 17 // if pool is null, use the global pool |
18 SkImageRef_GlobalPool(SkStream*, SkBitmap::Config, int sampleSize = 1); | 18 SkImageRef_GlobalPool(SkStreamRewindable*, SkBitmap::Config, |
| 19 int sampleSize = 1); |
19 virtual ~SkImageRef_GlobalPool(); | 20 virtual ~SkImageRef_GlobalPool(); |
20 | 21 |
21 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkImageRef_GlobalPool) | 22 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkImageRef_GlobalPool) |
22 | 23 |
23 // API to control the global pool | 24 // API to control the global pool |
24 | 25 |
25 /** Return the amount specified as the budget for the cache (in bytes). | 26 /** Return the amount specified as the budget for the cache (in bytes). |
26 */ | 27 */ |
27 static size_t GetRAMBudget(); | 28 static size_t GetRAMBudget(); |
28 | 29 |
(...skipping 10 matching lines...) Expand all Loading... |
39 amount actually freed may not always result in a ram usage value <= | 40 amount actually freed may not always result in a ram usage value <= |
40 to the requested amount. In addition, because of the | 41 to the requested amount. In addition, because of the |
41 chunky nature of the cache, the resulting usage may be < the requested | 42 chunky nature of the cache, the resulting usage may be < the requested |
42 amount. | 43 amount. |
43 */ | 44 */ |
44 static void SetRAMUsed(size_t usageInBytes); | 45 static void SetRAMUsed(size_t usageInBytes); |
45 | 46 |
46 static void DumpPool(); | 47 static void DumpPool(); |
47 | 48 |
48 protected: | 49 protected: |
49 virtual bool onDecode(SkImageDecoder* codec, SkStream* stream, | 50 virtual bool onDecode(SkImageDecoder* codec, SkStreamRewindable* stream, |
50 SkBitmap* bitmap, SkBitmap::Config config, | 51 SkBitmap* bitmap, SkBitmap::Config config, |
51 SkImageDecoder::Mode mode); | 52 SkImageDecoder::Mode mode); |
52 | 53 |
53 virtual void onUnlockPixels(); | 54 virtual void onUnlockPixels(); |
54 | 55 |
55 SkImageRef_GlobalPool(SkFlattenableReadBuffer&); | 56 SkImageRef_GlobalPool(SkFlattenableReadBuffer&); |
56 | 57 |
57 private: | 58 private: |
58 typedef SkImageRef INHERITED; | 59 typedef SkImageRef INHERITED; |
59 }; | 60 }; |
60 | 61 |
61 #endif | 62 #endif |
OLD | NEW |