Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: src/android/SkBitmapRegionCanvas.h

Issue 1990543002: Delete SkBitmapRegionCanvas (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Preserve old name of tests Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/android/SkBitmapRegionDecoder.h ('k') | src/android/SkBitmapRegionCanvas.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkBitmap.h"
9 #include "SkBitmapRegionDecoder.h"
10 #include "SkCodec.h"
11
12 /*
13 * This class implements SkBitmapRegionDecoder using an SkCodec and
14 * an SkCanvas. It uses the scanline decoder to subset the height. It then
15 * will subset the width and scale by drawing to an SkCanvas.
16 */
17 // FIXME: This class works well as a performance/quality comparison for
18 // SkBitmapRegionCodec, but it lacks several capabilities that are
19 // required by BitmapRegionDecoder in Android.
20 // (1) WEBP decodes - because SkWebpCodec does not have a scanline
21 // decoder.
22 // (2) Decodes to kGray8 and kIndex8.
23 // (3) Decodes to kUnpremul.
24 // (4) Correcting an invalid dstColorType. For example, if the
25 // client requests kRGB_565 for a non-opaque image, rather than
26 // fail, we need to go ahead and decode to kN32.
27 class SkBitmapRegionCanvas : public SkBitmapRegionDecoder {
28 public:
29
30 /*
31 * Takes ownership of pointer to decoder
32 */
33 SkBitmapRegionCanvas(SkCodec* decoder);
34
35 bool decodeRegion(SkBitmap* bitmap, SkBRDAllocator* allocator,
36 const SkIRect& desiredSubset, int sampleSize,
37 SkColorType colorType, bool requireUnpremul) override;
38
39 bool conversionSupported(SkColorType colorType) override;
40
41 SkEncodedFormat getEncodedFormat() override { return fDecoder->getEncodedFor mat(); }
42
43 private:
44
45 SkAutoTDelete<SkCodec> fDecoder;
46
47 typedef SkBitmapRegionDecoder INHERITED;
48
49 };
OLDNEW
« no previous file with comments | « include/android/SkBitmapRegionDecoder.h ('k') | src/android/SkBitmapRegionCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698