| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 #include "SkBmpCodec.h" | 8 #include "SkBmpCodec.h" |
| 9 #include "SkColorTable.h" | 9 #include "SkColorTable.h" |
| 10 #include "SkImageInfo.h" | 10 #include "SkImageInfo.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 * @param bytesPerColor the number of bytes in the stream used to represent | 29 * @param bytesPerColor the number of bytes in the stream used to represent |
| 30 each color in the color table | 30 each color in the color table |
| 31 * @param offset the offset of the image pixel data from the end of the | 31 * @param offset the offset of the image pixel data from the end of the |
| 32 * headers | 32 * headers |
| 33 * @param rowOrder indicates whether rows are ordered top-down or bottom-up | 33 * @param rowOrder indicates whether rows are ordered top-down or bottom-up |
| 34 * @param RLEBytes indicates the amount of data left in the stream | 34 * @param RLEBytes indicates the amount of data left in the stream |
| 35 * after decoding the headers | 35 * after decoding the headers |
| 36 */ | 36 */ |
| 37 SkBmpRLECodec(const SkImageInfo& srcInfo, SkStream* stream, | 37 SkBmpRLECodec(const SkImageInfo& srcInfo, SkStream* stream, |
| 38 uint16_t bitsPerPixel, uint32_t numColors, uint32_t bytesPerColor, | 38 uint16_t bitsPerPixel, uint32_t numColors, uint32_t bytesPerColor, |
| 39 uint32_t offset, SkScanlineDecoder::SkScanlineOrder rowOrder, | 39 uint32_t offset, SkCodec::SkScanlineOrder rowOrder, |
| 40 size_t RLEBytes); | 40 size_t RLEBytes); |
| 41 | 41 |
| 42 protected: | 42 protected: |
| 43 | 43 |
| 44 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, | 44 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, |
| 45 size_t dstRowBytes, const Options&, SkPMColor*, | 45 size_t dstRowBytes, const Options&, SkPMColor*, |
| 46 int*) override; | 46 int*) override; |
| 47 | 47 |
| 48 SkCodec::Result prepareToDecode(const SkImageInfo& dstInfo, | 48 SkCodec::Result prepareToDecode(const SkImageInfo& dstInfo, |
| 49 const SkCodec::Options& options, SkPMColor inputColorPtr[], | 49 const SkCodec::Options& options, SkPMColor inputColorPtr[], |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 const uint32_t fNumColors; | 88 const uint32_t fNumColors; |
| 89 const uint32_t fBytesPerColor; | 89 const uint32_t fBytesPerColor; |
| 90 const uint32_t fOffset; | 90 const uint32_t fOffset; |
| 91 SkAutoTDeleteArray<uint8_t> fStreamBuffer; | 91 SkAutoTDeleteArray<uint8_t> fStreamBuffer; |
| 92 size_t fRLEBytes; | 92 size_t fRLEBytes; |
| 93 uint32_t fCurrRLEByte; | 93 uint32_t fCurrRLEByte; |
| 94 int fSampleX; | 94 int fSampleX; |
| 95 | 95 |
| 96 typedef SkBmpCodec INHERITED; | 96 typedef SkBmpCodec INHERITED; |
| 97 }; | 97 }; |
| OLD | NEW |