Chromium Code Reviews| Index: src/utils/SkBitmapRegionCanvas.h |
| diff --git a/src/utils/SkBitmapRegionCanvas.h b/src/utils/SkBitmapRegionCanvas.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3f600bd1c9ec661f4082dcfef320d03046cd248c |
| --- /dev/null |
| +++ b/src/utils/SkBitmapRegionCanvas.h |
| @@ -0,0 +1,39 @@ |
| +/* |
| + * Copyright 2015 Google Inc. |
| + * |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +#include "SkBitmap.h" |
| +#include "SkBitmapRegionDecoder.h" |
| +#include "SkScanlineDecoder.h" |
| + |
| +/* |
| + * This class implements SkBitmapRegionDecoder using an SkScanlineDecoder and |
| + * an SkCanvas. It uses the scanline decoder to subset the height. It then |
| + * will subset the width and scale by drawing to an SkCanvas. |
| + */ |
| +class SkBitmapRegionCanvas : public SkBitmapRegionDecoder { |
| +public: |
| + |
| + /* |
| + * Takes ownership of pointer to decoder |
| + */ |
| + SkBitmapRegionCanvas(SkScanlineDecoder* decoder); |
| + |
| + /* |
| + * This has several key differences from the Android version: |
|
scroggo
2015/09/02 21:32:24
"several", or two? Are there others?
msarett
2015/09/03 19:20:52
Yeah I think this covers the important ones, will
|
| + * Returns a Skia bitmap instead of an Android bitmap. |
| + * Android version attempts to reuse a recycled bitmap. |
| + */ |
| + SkBitmap* decodeRegion(int start_x, int start_y, int width, int height, |
| + int sampleSize, SkColorType prefColorType) override; |
| + |
| +private: |
| + |
| + SkAutoTDelete<SkScanlineDecoder> fDecoder; |
| + |
| + typedef SkBitmapRegionDecoder INHERITED; |
| + |
| +}; |