| 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 SkDiscardableMemoryPool_DEFINED | 8 #ifndef SkDiscardableMemoryPool_DEFINED |
| 9 #define SkDiscardableMemoryPool_DEFINED | 9 #define SkDiscardableMemoryPool_DEFINED |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 virtual int getCacheHits() = 0; | 45 virtual int getCacheHits() = 0; |
| 46 virtual int getCacheMisses() = 0; | 46 virtual int getCacheMisses() = 0; |
| 47 virtual void resetCacheHitsAndMisses() = 0; | 47 virtual void resetCacheHitsAndMisses() = 0; |
| 48 #endif | 48 #endif |
| 49 | 49 |
| 50 /** | 50 /** |
| 51 * This non-global pool can be used for unit tests to verify that | 51 * This non-global pool can be used for unit tests to verify that |
| 52 * the pool works. | 52 * the pool works. |
| 53 * Without mutex, will be not be thread safe. | 53 * Without mutex, will be not be thread safe. |
| 54 */ | 54 */ |
| 55 static SkDiscardableMemoryPool* Create(size_t size, SkMutex* mutex = nullptr
); | 55 static SkDiscardableMemoryPool* Create( |
| 56 size_t size, SkBaseMutex* mutex = nullptr); |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 /** | 59 /** |
| 59 * Returns (and creates if needed) a threadsafe global | 60 * Returns (and creates if needed) a threadsafe global |
| 60 * SkDiscardableMemoryPool. | 61 * SkDiscardableMemoryPool. |
| 61 */ | 62 */ |
| 62 SkDiscardableMemoryPool* SkGetGlobalDiscardableMemoryPool(); | 63 SkDiscardableMemoryPool* SkGetGlobalDiscardableMemoryPool(); |
| 63 | 64 |
| 64 #if !defined(SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE) | 65 #if !defined(SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE) |
| 65 #define SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (128 * 1024 * 1024) | 66 #define SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (128 * 1024 * 1024) |
| 66 #endif | 67 #endif |
| 67 | 68 |
| 68 #endif // SkDiscardableMemoryPool_DEFINED | 69 #endif // SkDiscardableMemoryPool_DEFINED |
| OLD | NEW |