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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 void setPixel(void* dst, size_t dstRowBytes, | 74 void setPixel(void* dst, size_t dstRowBytes, |
75 const SkImageInfo& dstInfo, uint32_t x, uint32_t y, | 75 const SkImageInfo& dstInfo, uint32_t x, uint32_t y, |
76 uint8_t index); | 76 uint8_t index); |
77 /* | 77 /* |
78 * Set an RLE24 pixel from R, G, B values | 78 * Set an RLE24 pixel from R, G, B values |
79 */ | 79 */ |
80 void setRGBPixel(void* dst, size_t dstRowBytes, | 80 void setRGBPixel(void* dst, size_t dstRowBytes, |
81 const SkImageInfo& dstInfo, uint32_t x, uint32_t y, | 81 const SkImageInfo& dstInfo, uint32_t x, uint32_t y, |
82 uint8_t red, uint8_t green, uint8_t blue); | 82 uint8_t red, uint8_t green, uint8_t blue); |
83 | 83 |
84 Result decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, | 84 uint32_t decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowByte
s, |
85 const Options& opts) override; | 85 const Options& opts) override; |
86 | 86 |
87 SkAutoTUnref<SkColorTable> fColorTable; // owned | 87 SkAutoTUnref<SkColorTable> fColorTable; // owned |
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 |