| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 SkPixelSerializer_DEFINED | 8 #ifndef SkPixelSerializer_DEFINED |
| 9 #define SkPixelSerializer_DEFINED | 9 #define SkPixelSerializer_DEFINED |
| 10 | 10 |
| 11 class SkData; |
| 12 |
| 11 #include "SkRefCnt.h" | 13 #include "SkRefCnt.h" |
| 14 #include "SkPixmap.h" |
| 12 | 15 |
| 13 class SkData; | |
| 14 struct SkImageInfo; | |
| 15 | 16 |
| 16 /** | 17 /** |
| 17 * Interface for serializing pixels, e.g. SkBitmaps in an SkPicture. | 18 * Interface for serializing pixels, e.g. SkBitmaps in an SkPicture. |
| 18 */ | 19 */ |
| 19 class SkPixelSerializer : public SkRefCnt { | 20 class SkPixelSerializer : public SkRefCnt { |
| 20 public: | 21 public: |
| 21 virtual ~SkPixelSerializer() {} | 22 virtual ~SkPixelSerializer() {} |
| 22 | 23 |
| 23 /** | 24 /** |
| 24 * Call to determine if the client wants to serialize the encoded data. If | 25 * Call to determine if the client wants to serialize the encoded data. If |
| 25 * false, serialize another version (e.g. the result of encodePixels). | 26 * false, serialize another version (e.g. the result of encodePixels). |
| 26 */ | 27 */ |
| 27 bool useEncodedData(const void* data, size_t len) { | 28 bool useEncodedData(const void* data, size_t len) { |
| 28 return this->onUseEncodedData(data, len); | 29 return this->onUseEncodedData(data, len); |
| 29 } | 30 } |
| 30 | 31 |
| 31 /** | 32 /** |
| 32 * Call to get the client's version of encoding these pixels. If it | 33 * Call to get the client's version of encoding these pixels. If it |
| 33 * returns NULL, serialize the raw pixels. | 34 * returns NULL, serialize the raw pixels. |
| 34 */ | 35 */ |
| 35 SkData* encodePixels(const SkImageInfo& info, const void* pixels, size_t row
Bytes) { | 36 SkData* encodePixels(const SkImageInfo& info, const void* pixels, size_t row
Bytes) { |
| 36 return this->onEncodePixels(info, pixels, rowBytes); | 37 return this->onEncodePixels(info, pixels, rowBytes); |
| 37 } | 38 } |
| 38 | 39 |
| 40 /** |
| 41 * Call to get the client's version of encoding these pixels. If it |
| 42 * returns NULL, serialize the raw pixels. |
| 43 */ |
| 44 SkData* encode(const SkPixmap& pixmap) { |
| 45 SkData* data = this->onEncode(pixmap); |
| 46 return data ? data : this->onEncodePixels( |
| 47 pixmap.info(), pixmap.addr(), pixmap.rowBytes()); |
| 48 } |
| 49 |
| 39 protected: | 50 protected: |
| 40 /** | 51 /** |
| 41 * Return true if you want to serialize the encoded data, false if you want | 52 * Return true if you want to serialize the encoded data, false if you want |
| 42 * another version serialized (e.g. the result of encodePixels). | 53 * another version serialized (e.g. the result of encodePixels). |
| 43 */ | 54 */ |
| 44 virtual bool onUseEncodedData(const void* data, size_t len) = 0; | 55 virtual bool onUseEncodedData(const void* data, size_t len) = 0; |
| 45 | 56 |
| 46 /** | 57 /** |
| 47 * If you want to encode these pixels, return the encoded data as an SkData | 58 * If you want to encode these pixels, return the encoded data as an SkData |
| 48 * Return null if you want to serialize the raw pixels. | 59 * Return null if you want to serialize the raw pixels. |
| 49 */ | 60 */ |
| 50 virtual SkData* onEncodePixels(const SkImageInfo&, const void* pixels, size_
t rowBytes) = 0; | 61 // NOTE: onEncodePixels() is deprecated and removed in a later CL. |
| 62 // Subclasses should implement onEncode() instead. Subclasses |
| 63 // should implement at least one of onEncodePixels() or |
| 64 // onUseEncodedData(). |
| 65 virtual SkData* onEncodePixels(const SkImageInfo&, |
| 66 const void* /*pixels*/, |
| 67 size_t /*rowBytes*/) { |
| 68 return nullptr; |
| 69 } |
| 70 virtual SkData* onEncode(const SkPixmap&) { return nullptr; } |
| 51 }; | 71 }; |
| 52 #endif // SkPixelSerializer_DEFINED | 72 #endif // SkPixelSerializer_DEFINED |
| OLD | NEW |