| Index: src/codec/SkBmpRLECodec.h
|
| diff --git a/src/codec/SkBmpRLECodec.h b/src/codec/SkBmpRLECodec.h
|
| index e0afccd927583a34c805394ef698328bcb6305a0..2ddf8d8b90c9a97a4d51677e7df52cc4f73aa782 100644
|
| --- a/src/codec/SkBmpRLECodec.h
|
| +++ b/src/codec/SkBmpRLECodec.h
|
| @@ -23,7 +23,7 @@
|
| * Called only by SkBmpCodec::NewFromStream
|
| * There should be no other callers despite this being public
|
| *
|
| - * @param info contains properties of the encoded data
|
| + * @param srcInfo contains the source width and height
|
| * @param stream the stream of encoded image data
|
| * @param bitsPerPixel the number of bits used to store each pixel
|
| * @param numColors the number of colors in the color table
|
| @@ -35,7 +35,7 @@
|
| * @param RLEBytes indicates the amount of data left in the stream
|
| * after decoding the headers
|
| */
|
| - SkBmpRLECodec(int width, int height, const SkEncodedInfo& info, SkStream* stream,
|
| + SkBmpRLECodec(const SkImageInfo& srcInfo, SkStream* stream,
|
| uint16_t bitsPerPixel, uint32_t numColors, uint32_t bytesPerColor,
|
| uint32_t offset, SkCodec::SkScanlineOrder rowOrder,
|
| size_t RLEBytes);
|
|
|