OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2013 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 7 |
| 8 #ifndef SkLazyCachingPixelRef_DEFINED |
| 9 #define SkLazyCachingPixelRef_DEFINED |
| 10 |
| 11 #include "SkBitmapFactory.h" |
| 12 #include "SkCachingPixelRef.h" |
| 13 |
| 14 class SkData; |
| 15 |
| 16 /** |
| 17 * PixelRef which defers decoding until SkBitmap::lockPixels() is |
| 18 * called. Makes use of a supplied decode procedure. Will decode at |
| 19 * the procedure's preferred size. |
| 20 */ |
| 21 class SkLazyCachingPixelRef : public SkCachingPixelRef { |
| 22 public: |
| 23 /** |
| 24 * @param data Encoded data representing the pixels. NULL is |
| 25 * equivalent to an empty data, and will be passed to |
| 26 * DecodeProc with length zero. |
| 27 * |
| 28 * @param procedure Called to decode the pixels when |
| 29 * needed. If NULL, use SkImageDecoder::DecodeMemoryToTarget. |
| 30 * |
| 31 * @param cache If NULL, use the default global cache. |
| 32 */ |
| 33 SkLazyCachingPixelRef(SkData* data, |
| 34 SkBitmapFactory::DecodeProc procedure, |
| 35 SkScaledImageCache* cache = NULL); |
| 36 |
| 37 virtual ~SkLazyCachingPixelRef(); |
| 38 |
| 39 virtual SkData* onRefEncodedData() SK_OVERRIDE { return SkSafeRef(fData); } |
| 40 |
| 41 /** |
| 42 * A simplified version of SkBitmapFactory. Installs a new |
| 43 * SkLazyCachingPixelRef into the provided bitmap. Will |
| 44 * immediately call onDecodeInfo() to configure the bitmap, but |
| 45 * will defer decoding until the first time the bitmap's pixels |
| 46 * are locked. |
| 47 * |
| 48 * @param data Encoded data representing the pixels. NULL is |
| 49 * equivalent to an empty data, and will be passed to |
| 50 * DecodeProc with length zero. |
| 51 * |
| 52 * @param procedure Called to decode the pixels when |
| 53 * needed. If NULL, use SkImageDecoder::DecodeMemoryToTarget. |
| 54 * |
| 55 * @param destination Bitmap that will be modified on success. |
| 56 * |
| 57 * @param cache If NULL, use the default global cache. |
| 58 * |
| 59 * @returns true on success. |
| 60 */ |
| 61 static bool Install(SkBitmapFactory::DecodeProc procedure, |
| 62 SkData* data, |
| 63 SkBitmap* destination, |
| 64 SkScaledImageCache* cache = NULL); |
| 65 |
| 66 // No need to flatten this object. When flattening an SkBitmap, |
| 67 // SkOrderedWriteBuffer will check the encoded data and write that |
| 68 // instead. |
| 69 // Future implementations of SkFlattenableWriteBuffer will need to |
| 70 // special case for onRefEncodedData as well. |
| 71 SK_DECLARE_UNFLATTENABLE_OBJECT() |
| 72 |
| 73 protected: |
| 74 /** |
| 75 * Return some information about the pixels, allowing this class |
| 76 * to allocate pixels. @return false if anything goes wrong. |
| 77 * |
| 78 * This implementation calls SkBitmapFactory::DecodeProc with a |
| 79 * NULL target. |
| 80 */ |
| 81 virtual bool onDecodeInfo(SkISize*, |
| 82 SkBitmap::Config*, |
| 83 SkAlphaType*) SK_OVERRIDE; |
| 84 /** |
| 85 * Decode into the given pixels. |
| 86 * @return false if anything goes wrong. |
| 87 * |
| 88 * This implementation calls SkBitmapFactory::DecodeProc with a |
| 89 * target containing pixels and rowBytes. |
| 90 */ |
| 91 virtual bool onDecode(void* pixels, |
| 92 size_t rowBytes) SK_OVERRIDE; |
| 93 |
| 94 private: |
| 95 SkData* fData; |
| 96 SkBitmapFactory::DecodeProc fDecodeProc; |
| 97 SkImage::Info fLazilyCachedInfo; |
| 98 |
| 99 typedef SkCachingPixelRef INHERITED; |
| 100 }; |
| 101 |
| 102 #endif // SkLazyCachingPixelRef_DEFINED |
| 103 |
OLD | NEW |