Index: src/codec/SkBmpRLECodec.cpp |
diff --git a/src/codec/SkBmpRLECodec.cpp b/src/codec/SkBmpRLECodec.cpp |
index d80dd1a18ab63f5bf5f91920d11cf6e748afccbb..793bbfd2609e3bf139ec79795f7087b8d79f330d 100644 |
--- a/src/codec/SkBmpRLECodec.cpp |
+++ b/src/codec/SkBmpRLECodec.cpp |
@@ -14,12 +14,12 @@ |
* Creates an instance of the decoder |
* Called only by NewFromStream |
*/ |
-SkBmpRLECodec::SkBmpRLECodec(int width, int height, const SkEncodedInfo& info, SkStream* stream, |
+SkBmpRLECodec::SkBmpRLECodec(const SkImageInfo& info, SkStream* stream, |
uint16_t bitsPerPixel, uint32_t numColors, |
uint32_t bytesPerColor, uint32_t offset, |
SkCodec::SkScanlineOrder rowOrder, |
size_t RLEBytes) |
- : INHERITED(width, height, info, stream, bitsPerPixel, rowOrder) |
+ : INHERITED(info, stream, bitsPerPixel, rowOrder) |
, fColorTable(nullptr) |
, fNumColors(numColors) |
, fBytesPerColor(bytesPerColor) |