blob: 198dc07572c0dcf9b920ab08504d16814a4e7ec0 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#ifndef SkScaledBitmapSampler_DEFINED
9#define SkScaledBitmapSampler_DEFINED
10
11#include "SkTypes.h"
reed@android.com11344262009-07-08 20:09:23 +000012#include "SkColor.h"
scroggo@google.com8d239242013-10-01 17:27:15 +000013#include "SkImageDecoder.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000014
15class SkBitmap;
16
17class SkScaledBitmapSampler {
18public:
19 SkScaledBitmapSampler(int origWidth, int origHeight, int cellSize);
rmistry@google.comd6176b02012-08-23 18:14:13 +000020
reed@android.com8a1c16f2008-12-17 15:59:43 +000021 int scaledWidth() const { return fScaledWidth; }
22 int scaledHeight() const { return fScaledHeight; }
rmistry@google.comd6176b02012-08-23 18:14:13 +000023
reed@android.com8a1c16f2008-12-17 15:59:43 +000024 int srcY0() const { return fY0; }
commit-bot@chromium.orgdac4a1d2013-10-08 19:40:18 +000025 int srcDX() const { return fDX; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000026 int srcDY() const { return fDY; }
27
28 enum SrcConfig {
29 kGray, // 1 byte per pixel
30 kIndex, // 1 byte per pixel
31 kRGB, // 3 bytes per pixel
32 kRGBX, // 4 byes per pixel (ignore 4th)
djsollen@google.com57f49692011-02-23 20:46:31 +000033 kRGBA, // 4 bytes per pixel
34 kRGB_565 // 2 bytes per pixel
reed@android.com8a1c16f2008-12-17 15:59:43 +000035 };
36
krajcevski407d7c92014-06-09 14:29:11 -070037 struct Options {
38 bool fDither;
39 bool fPremultiplyAlpha;
40 bool fSkipZeros;
41 explicit Options(const SkImageDecoder &dec)
42 : fDither(dec.getDitherImage())
43 , fPremultiplyAlpha(!dec.getRequireUnpremultipliedColors())
44 , fSkipZeros(dec.getSkipWritingZeroes())
45 { }
46 };
47
reed@android.com8a1c16f2008-12-17 15:59:43 +000048 // Given a dst bitmap (with pixels already allocated) and a src-config,
49 // prepares iterator to process the src colors and write them into dst.
50 // Returns false if the request cannot be fulfulled.
scroggo@google.com8d239242013-10-01 17:27:15 +000051 bool begin(SkBitmap* dst, SrcConfig sc, const SkImageDecoder& decoder,
Tom Hudson2880df22015-10-29 09:55:42 -040052 const SkPMColor* = nullptr);
krajcevski407d7c92014-06-09 14:29:11 -070053 bool begin(SkBitmap* dst, SrcConfig sc, const Options& opts,
Tom Hudson2880df22015-10-29 09:55:42 -040054 const SkPMColor* = nullptr);
reed@android.com8a1c16f2008-12-17 15:59:43 +000055 // call with row of src pixels, for y = 0...scaledHeight-1.
56 // returns true if the row had non-opaque alpha in it
57 bool next(const uint8_t* SK_RESTRICT src);
58
commit-bot@chromium.orgdac4a1d2013-10-08 19:40:18 +000059 // Like next(), but specifies the y value of the source row, so the
60 // rows can come in any order. If the row is not part of the output
61 // sample, it will be skipped. Only sampleInterlaced OR next should
62 // be called for one SkScaledBitmapSampler.
63 bool sampleInterlaced(const uint8_t* SK_RESTRICT src, int srcY);
64
scroggo@google.com8d239242013-10-01 17:27:15 +000065 typedef bool (*RowProc)(void* SK_RESTRICT dstRow,
66 const uint8_t* SK_RESTRICT src,
67 int width, int deltaSrc, int y,
68 const SkPMColor[]);
69
reed@android.com8a1c16f2008-12-17 15:59:43 +000070private:
71 int fScaledWidth;
72 int fScaledHeight;
73
74 int fX0; // first X coord to sample
75 int fY0; // first Y coord (scanline) to sample
76 int fDX; // step between X samples
77 int fDY; // step between Y samples
reed@android.com11344262009-07-08 20:09:23 +000078
commit-bot@chromium.orgdac4a1d2013-10-08 19:40:18 +000079#ifdef SK_DEBUG
80 // Keep track of whether the caller is using next or sampleInterlaced.
81 // Only one can be used per sampler.
82 enum SampleMode {
83 kUninitialized_SampleMode,
84 kConsecutive_SampleMode,
85 kInterlaced_SampleMode,
86 };
87
88 SampleMode fSampleMode;
89#endif
90
reed@android.com8a1c16f2008-12-17 15:59:43 +000091 // setup state
92 char* fDstRow; // points into bitmap's pixels
scroggo@google.come5f48242013-02-25 21:47:41 +000093 size_t fDstRowBytes;
reed@android.com8a1c16f2008-12-17 15:59:43 +000094 int fCurrY; // used for dithering
rmistry@google.comd6176b02012-08-23 18:14:13 +000095 int fSrcPixelSize; // 1, 3, 4
reed@android.com8a1c16f2008-12-17 15:59:43 +000096 RowProc fRowProc;
reed@android.com11344262009-07-08 20:09:23 +000097
98 // optional reference to the src colors if the src is a palette model
99 const SkPMColor* fCTable;
scroggo@google.com8d239242013-10-01 17:27:15 +0000100
101#ifdef SK_DEBUG
102 // Helper class allowing a test to have access to fRowProc.
103 friend class RowProcTester;
104#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000105};
106
107#endif