blob: b05fdb0439ba5873b978c06b3cd8f61d1900fd75 [file] [log] [blame]
scroggo478652e2015-03-25 07:11:02 -07001/*
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
mtklein748ca3b2015-01-15 10:56:12 -08008#ifndef DMSrcSink_DEFINED
9#define DMSrcSink_DEFINED
10
11#include "DMGpuSupport.h"
12#include "SkBBHFactory.h"
13#include "SkBBoxHierarchy.h"
14#include "SkBitmap.h"
msarett5cb48852015-11-06 08:56:32 -080015#include "SkBitmapRegionDecoder.h"
mtklein748ca3b2015-01-15 10:56:12 -080016#include "SkCanvas.h"
17#include "SkData.h"
halcanary45420a92016-06-02 12:41:14 -070018#include "SkMultiPictureDocumentReader.h"
mtklein748ca3b2015-01-15 10:56:12 -080019#include "SkPicture.h"
mtklein748ca3b2015-01-15 10:56:12 -080020#include "gm.h"
21
22namespace DM {
23
24// This is just convenience. It lets you use either return "foo" or return SkStringPrintf(...).
25struct ImplicitString : public SkString {
26 template <typename T>
27 ImplicitString(const T& s) : SkString(s) {}
msarett9e707a02015-09-01 14:57:57 -070028 ImplicitString() : SkString("") {}
mtklein748ca3b2015-01-15 10:56:12 -080029};
mtklein748ca3b2015-01-15 10:56:12 -080030typedef ImplicitString Name;
mtklein8d17a132015-01-30 11:42:31 -080031typedef ImplicitString Path;
mtklein748ca3b2015-01-15 10:56:12 -080032
mtklein4089ef72015-03-05 08:40:28 -080033class Error {
34public:
35 Error(const SkString& s) : fMsg(s), fFatal(!this->isEmpty()) {}
36 Error(const char* s) : fMsg(s), fFatal(!this->isEmpty()) {}
37
38 Error(const Error&) = default;
39 Error& operator=(const Error&) = default;
40
41 static Error Nonfatal(const SkString& s) { return Nonfatal(s.c_str()); }
42 static Error Nonfatal(const char* s) {
43 Error e(s);
44 e.fFatal = false;
45 return e;
46 }
47
48 const char* c_str() const { return fMsg.c_str(); }
49 bool isEmpty() const { return fMsg.isEmpty(); }
50 bool isFatal() const { return fFatal; }
51
52private:
53 SkString fMsg;
54 bool fFatal;
55};
56
mtklein99cab4e2015-07-31 06:43:04 -070057struct SinkFlags {
58 enum { kNull, kGPU, kVector, kRaster } type;
59 enum { kDirect, kIndirect } approach;
60};
mtkleine0effd62015-07-29 06:37:28 -070061
mtklein748ca3b2015-01-15 10:56:12 -080062struct Src {
mtklein748ca3b2015-01-15 10:56:12 -080063 virtual ~Src() {}
64 virtual Error SK_WARN_UNUSED_RESULT draw(SkCanvas*) const = 0;
65 virtual SkISize size() const = 0;
66 virtual Name name() const = 0;
bsalomon4ee6bd82015-05-27 13:23:23 -070067 virtual void modifyGrContextOptions(GrContextOptions* options) const {}
mtklein99cab4e2015-07-31 06:43:04 -070068 virtual bool veto(SinkFlags) const { return false; }
mtklein21eaf3b2016-02-08 12:39:59 -080069
halcanary45420a92016-06-02 12:41:14 -070070 virtual int pageCount() const { return 1; }
71 virtual Error SK_WARN_UNUSED_RESULT draw(int, SkCanvas* canvas) const {
72 return this->draw(canvas);
73 }
74 virtual SkISize size(int) const { return this->size(); }
mtklein21eaf3b2016-02-08 12:39:59 -080075 // Force Tasks using this Src to run on the main thread?
76 virtual bool serial() const { return false; }
mtklein748ca3b2015-01-15 10:56:12 -080077};
78
79struct Sink {
80 virtual ~Sink() {}
mtkleinb9eb4ac2015-02-02 18:26:03 -080081 // You may write to either the bitmap or stream. If you write to log, we'll print that out.
82 virtual Error SK_WARN_UNUSED_RESULT draw(const Src&, SkBitmap*, SkWStream*, SkString* log)
83 const = 0;
mtklein21eaf3b2016-02-08 12:39:59 -080084
85 // Force Tasks using this Sink to run on the main thread?
86 virtual bool serial() const { return false; }
mtklein748ca3b2015-01-15 10:56:12 -080087
88 // File extension for the content draw() outputs, e.g. "png", "pdf".
89 virtual const char* fileExtension() const = 0;
mtklein99cab4e2015-07-31 06:43:04 -070090
91 virtual SinkFlags flags() const = 0;
mtklein748ca3b2015-01-15 10:56:12 -080092};
93
mtklein748ca3b2015-01-15 10:56:12 -080094/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
95
mtklein748ca3b2015-01-15 10:56:12 -080096class GMSrc : public Src {
97public:
98 explicit GMSrc(skiagm::GMRegistry::Factory);
99
mtklein36352bf2015-03-25 18:17:31 -0700100 Error draw(SkCanvas*) const override;
101 SkISize size() const override;
102 Name name() const override;
bsalomon4ee6bd82015-05-27 13:23:23 -0700103 void modifyGrContextOptions(GrContextOptions* options) const override;
104
mtklein748ca3b2015-01-15 10:56:12 -0800105private:
106 skiagm::GMRegistry::Factory fFactory;
107};
108
scroggo9b77ddd2015-03-19 06:03:39 -0700109class CodecSrc : public Src {
110public:
scroggo9c59ebc2015-03-25 13:48:49 -0700111 enum Mode {
msarett9e707a02015-09-01 14:57:57 -0700112 kCodec_Mode,
msarettbb25b532016-01-13 09:31:39 -0800113 // We choose to test only one mode with zero initialized memory.
114 // This will exercise all of the interesting cases in SkSwizzler
115 // without doubling the size of our test suite.
116 kCodecZeroInit_Mode,
scroggo9c59ebc2015-03-25 13:48:49 -0700117 kScanline_Mode,
msarett0a242972015-06-11 14:27:27 -0700118 kStripe_Mode, // Tests the skipping of scanlines
msarett91c22b22016-02-22 12:27:46 -0800119 kCroppedScanline_Mode, // Tests (jpeg) cropped scanline optimization
scroggob636b452015-07-22 07:16:20 -0700120 kSubset_Mode, // For codecs that support subsets directly.
scroggo9c59ebc2015-03-25 13:48:49 -0700121 };
msarett438b2ad2015-04-09 12:43:10 -0700122 enum DstColorType {
123 kGetFromCanvas_DstColorType,
124 kIndex8_Always_DstColorType,
125 kGrayscale_Always_DstColorType,
msarett34e0ec42016-04-22 16:27:24 -0700126 kNonNative8888_Always_DstColorType,
msarett438b2ad2015-04-09 12:43:10 -0700127 };
scroggoc5560be2016-02-03 09:42:42 -0800128 CodecSrc(Path, Mode, DstColorType, SkAlphaType, float);
scroggo9b77ddd2015-03-19 06:03:39 -0700129
mtklein36352bf2015-03-25 18:17:31 -0700130 Error draw(SkCanvas*) const override;
131 SkISize size() const override;
132 Name name() const override;
mtklein99cab4e2015-07-31 06:43:04 -0700133 bool veto(SinkFlags) const override;
scroggo3ac66e92016-02-08 15:09:48 -0800134 bool serial() const override { return fRunSerially; }
scroggo9b77ddd2015-03-19 06:03:39 -0700135private:
msarett9e707a02015-09-01 14:57:57 -0700136 Path fPath;
137 Mode fMode;
138 DstColorType fDstColorType;
scroggoc5560be2016-02-03 09:42:42 -0800139 SkAlphaType fDstAlphaType;
msarett9e707a02015-09-01 14:57:57 -0700140 float fScale;
scroggo3ac66e92016-02-08 15:09:48 -0800141 bool fRunSerially;
scroggo9b77ddd2015-03-19 06:03:39 -0700142};
143
msarett3d9d7a72015-10-21 10:27:10 -0700144class AndroidCodecSrc : public Src {
145public:
scroggof8dc9df2016-05-16 09:04:13 -0700146 AndroidCodecSrc(Path, CodecSrc::DstColorType, SkAlphaType, int sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700147
148 Error draw(SkCanvas*) const override;
149 SkISize size() const override;
150 Name name() const override;
151 bool veto(SinkFlags) const override;
scroggo3ac66e92016-02-08 15:09:48 -0800152 bool serial() const override { return fRunSerially; }
msarett3d9d7a72015-10-21 10:27:10 -0700153private:
154 Path fPath;
msarett3d9d7a72015-10-21 10:27:10 -0700155 CodecSrc::DstColorType fDstColorType;
scroggoc5560be2016-02-03 09:42:42 -0800156 SkAlphaType fDstAlphaType;
msarett3d9d7a72015-10-21 10:27:10 -0700157 int fSampleSize;
scroggo3ac66e92016-02-08 15:09:48 -0800158 bool fRunSerially;
msarett3d9d7a72015-10-21 10:27:10 -0700159};
160
msaretta5783ae2015-09-08 15:35:32 -0700161// Allows for testing of various implementations of Android's BitmapRegionDecoder
162class BRDSrc : public Src {
163public:
164 enum Mode {
165 // Decode the entire image as one region.
166 kFullImage_Mode,
167 // Splits the image into multiple regions using a divisor and decodes the regions
168 // separately. Also, this test adds a border of a few pixels to each of the regions
169 // that it is decoding. This tests the behavior when a client asks for a region that
170 // does not fully fit in the image.
171 kDivisor_Mode,
172 };
173
msarettd1227a72016-05-18 06:23:57 -0700174 BRDSrc(Path, Mode, CodecSrc::DstColorType, uint32_t);
msaretta5783ae2015-09-08 15:35:32 -0700175
msaretta5783ae2015-09-08 15:35:32 -0700176 Error draw(SkCanvas*) const override;
177 SkISize size() const override;
178 Name name() const override;
179 bool veto(SinkFlags) const override;
180private:
181 Path fPath;
msaretta5783ae2015-09-08 15:35:32 -0700182 Mode fMode;
183 CodecSrc::DstColorType fDstColorType;
184 uint32_t fSampleSize;
185};
scroggo9b77ddd2015-03-19 06:03:39 -0700186
msarett18976312016-03-09 14:20:58 -0800187class ImageGenSrc : public Src {
188public:
189 enum Mode {
190 kCodec_Mode, // Use CodecImageGenerator
191 kPlatform_Mode, // Uses CG or WIC
192 };
193 ImageGenSrc(Path, Mode, SkAlphaType, bool);
194
195 Error draw(SkCanvas*) const override;
196 SkISize size() const override;
197 Name name() const override;
198 bool veto(SinkFlags) const override;
199 bool serial() const override { return fRunSerially; }
200private:
201 Path fPath;
202 Mode fMode;
203 SkAlphaType fDstAlphaType;
204 bool fIsGpu;
205 bool fRunSerially;
206};
207
msarett69deca82016-04-29 09:38:40 -0700208class ColorCodecSrc : public Src {
209public:
210 enum Mode {
211 // Mimic legacy behavior and apply no color correction.
212 kBaseline_Mode,
msarett888dc162016-05-23 10:21:17 -0700213
214 // Color correct images into a specific dst color space. If you happen to have this
215 // monitor, you're in luck! The unmarked outputs of this test should display
216 // correctly on this monitor in the Chrome browser. If not, it's useful to know
217 // that this monitor has a profile that is fairly similar to Adobe RGB.
msarett888dc162016-05-23 10:21:17 -0700218 kDst_HPZR30w_Mode,
msarett9876ac52016-06-01 14:47:18 -0700219
msarettd2809572016-06-20 06:07:45 -0700220 kDst_sRGB_Mode,
221
msarett469f1c52016-06-06 08:20:37 -0700222#if defined(SK_TEST_QCMS)
msarett9876ac52016-06-01 14:47:18 -0700223 // Use QCMS for color correction.
224 kQCMS_HPZR30w_Mode,
225#endif
msarett69deca82016-04-29 09:38:40 -0700226 };
227
msarett9ce3a542016-07-15 13:54:38 -0700228 ColorCodecSrc(Path, Mode, SkColorType);
msarett69deca82016-04-29 09:38:40 -0700229
230 Error draw(SkCanvas*) const override;
231 SkISize size() const override;
232 Name name() const override;
233 bool veto(SinkFlags) const override;
234private:
235 Path fPath;
236 Mode fMode;
msarett9ce3a542016-07-15 13:54:38 -0700237 SkColorType fColorType;
msarett69deca82016-04-29 09:38:40 -0700238};
239
mtklein748ca3b2015-01-15 10:56:12 -0800240class SKPSrc : public Src {
241public:
mtklein8d17a132015-01-30 11:42:31 -0800242 explicit SKPSrc(Path path);
mtklein748ca3b2015-01-15 10:56:12 -0800243
mtklein36352bf2015-03-25 18:17:31 -0700244 Error draw(SkCanvas*) const override;
245 SkISize size() const override;
246 Name name() const override;
mtklein748ca3b2015-01-15 10:56:12 -0800247private:
mtklein8d17a132015-01-30 11:42:31 -0800248 Path fPath;
mtklein748ca3b2015-01-15 10:56:12 -0800249};
250
251/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
252
halcanary45420a92016-06-02 12:41:14 -0700253class MSKPSrc : public Src {
254public:
255 explicit MSKPSrc(Path path);
256
257 int pageCount() const override;
258 Error draw(SkCanvas* c) const override;
259 Error draw(int, SkCanvas*) const override;
260 SkISize size() const override;
261 SkISize size(int) const override;
262 Name name() const override;
263
264private:
265 Path fPath;
266 SkMultiPictureDocumentReader fReader;
267};
268
269/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
270
mtkleinad66f9b2015-02-13 15:11:10 -0800271class NullSink : public Sink {
272public:
273 NullSink() {}
274
mtklein36352bf2015-03-25 18:17:31 -0700275 Error draw(const Src& src, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700276 const char* fileExtension() const override { return ""; }
mtklein99cab4e2015-07-31 06:43:04 -0700277 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kNull, SinkFlags::kDirect }; }
mtkleinad66f9b2015-02-13 15:11:10 -0800278};
279
280
mtklein748ca3b2015-01-15 10:56:12 -0800281class GPUSink : public Sink {
282public:
bsalomon85b4b532016-04-05 11:06:27 -0700283 GPUSink(sk_gpu_test::GrContextFactory::ContextType,
284 sk_gpu_test::GrContextFactory::ContextOptions,
brianosmanb109b8c2016-06-16 13:03:24 -0700285 int samples, bool diText, SkColorType colorType, sk_sp<SkColorSpace> colorSpace,
brianosmand93c1202016-03-10 07:49:08 -0800286 bool threaded);
mtklein748ca3b2015-01-15 10:56:12 -0800287
mtklein36352bf2015-03-25 18:17:31 -0700288 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein21eaf3b2016-02-08 12:39:59 -0800289 bool serial() const override { return !fThreaded; }
mtklein36352bf2015-03-25 18:17:31 -0700290 const char* fileExtension() const override { return "png"; }
mtklein99cab4e2015-07-31 06:43:04 -0700291 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kGPU, SinkFlags::kDirect }; }
mtklein748ca3b2015-01-15 10:56:12 -0800292private:
bsalomon85b4b532016-04-05 11:06:27 -0700293 sk_gpu_test::GrContextFactory::ContextType fContextType;
294 sk_gpu_test::GrContextFactory::ContextOptions fContextOptions;
bsalomon3724e572016-03-30 18:56:19 -0700295 int fSampleCount;
296 bool fUseDIText;
297 SkColorType fColorType;
brianosmanb109b8c2016-06-16 13:03:24 -0700298 sk_sp<SkColorSpace> fColorSpace;
bsalomon3724e572016-03-30 18:56:19 -0700299 bool fThreaded;
mtklein748ca3b2015-01-15 10:56:12 -0800300};
301
302class PDFSink : public Sink {
303public:
halcanary4b656662016-04-27 07:45:18 -0700304 PDFSink(bool pdfa = false) : fPDFA(pdfa) {}
mtklein36352bf2015-03-25 18:17:31 -0700305 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700306 const char* fileExtension() const override { return "pdf"; }
mtklein99cab4e2015-07-31 06:43:04 -0700307 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
halcanary4b656662016-04-27 07:45:18 -0700308 bool fPDFA;
mtklein748ca3b2015-01-15 10:56:12 -0800309};
310
halcanary47ef4d52015-03-03 09:13:09 -0800311class XPSSink : public Sink {
312public:
313 XPSSink();
314
mtklein36352bf2015-03-25 18:17:31 -0700315 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700316 const char* fileExtension() const override { return "xps"; }
mtklein99cab4e2015-07-31 06:43:04 -0700317 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
halcanary47ef4d52015-03-03 09:13:09 -0800318};
319
mtklein748ca3b2015-01-15 10:56:12 -0800320class RasterSink : public Sink {
321public:
brianosmanb109b8c2016-06-16 13:03:24 -0700322 explicit RasterSink(SkColorType, sk_sp<SkColorSpace> = nullptr);
mtklein748ca3b2015-01-15 10:56:12 -0800323
mtklein36352bf2015-03-25 18:17:31 -0700324 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700325 const char* fileExtension() const override { return "png"; }
mtklein99cab4e2015-07-31 06:43:04 -0700326 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kRaster, SinkFlags::kDirect }; }
mtklein748ca3b2015-01-15 10:56:12 -0800327private:
brianosmanb109b8c2016-06-16 13:03:24 -0700328 SkColorType fColorType;
329 sk_sp<SkColorSpace> fColorSpace;
mtklein748ca3b2015-01-15 10:56:12 -0800330};
331
mtklein9c3f17d2015-01-28 11:35:18 -0800332class SKPSink : public Sink {
333public:
334 SKPSink();
335
mtklein36352bf2015-03-25 18:17:31 -0700336 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700337 const char* fileExtension() const override { return "skp"; }
mtklein99cab4e2015-07-31 06:43:04 -0700338 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
mtklein9c3f17d2015-01-28 11:35:18 -0800339};
340
mtklein8a4527e2015-01-31 20:00:58 -0800341class SVGSink : public Sink {
342public:
343 SVGSink();
344
mtklein36352bf2015-03-25 18:17:31 -0700345 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700346 const char* fileExtension() const override { return "svg"; }
mtklein99cab4e2015-07-31 06:43:04 -0700347 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
mtklein8a4527e2015-01-31 20:00:58 -0800348};
349
350
mtklein748ca3b2015-01-15 10:56:12 -0800351/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
352
mtklein78829242015-05-06 07:54:07 -0700353class Via : public Sink {
354public:
msarett62d3b102015-12-10 15:14:27 -0800355 explicit Via(Sink* sink) : fSink(sink) {}
mtklein78829242015-05-06 07:54:07 -0700356 const char* fileExtension() const override { return fSink->fileExtension(); }
mtklein21eaf3b2016-02-08 12:39:59 -0800357 bool serial() const override { return fSink->serial(); }
mtklein99cab4e2015-07-31 06:43:04 -0700358 SinkFlags flags() const override {
359 SinkFlags flags = fSink->flags();
360 flags.approach = SinkFlags::kIndirect;
361 return flags;
362 }
mtklein78829242015-05-06 07:54:07 -0700363protected:
364 SkAutoTDelete<Sink> fSink;
365};
366
367class ViaMatrix : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800368public:
msarett62d3b102015-12-10 15:14:27 -0800369 ViaMatrix(SkMatrix, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700370 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800371private:
mtklein78829242015-05-06 07:54:07 -0700372 const SkMatrix fMatrix;
mtklein748ca3b2015-01-15 10:56:12 -0800373};
374
mtklein78829242015-05-06 07:54:07 -0700375class ViaUpright : public Via {
mtkleind603b222015-02-17 11:13:33 -0800376public:
msarett62d3b102015-12-10 15:14:27 -0800377 ViaUpright(SkMatrix, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700378 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleind603b222015-02-17 11:13:33 -0800379private:
mtklein78829242015-05-06 07:54:07 -0700380 const SkMatrix fMatrix;
mtkleind603b222015-02-17 11:13:33 -0800381};
382
mtklein78829242015-05-06 07:54:07 -0700383class ViaSerialization : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800384public:
msarett62d3b102015-12-10 15:14:27 -0800385 explicit ViaSerialization(Sink* sink) : Via(sink) {}
mtklein36352bf2015-03-25 18:17:31 -0700386 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800387};
388
mtklein4a34ecb2016-01-08 10:19:35 -0800389class ViaPicture : public Via {
390public:
391 explicit ViaPicture(Sink* sink) : Via(sink) {}
392 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
393};
394
reedbabc3de2016-07-08 08:43:27 -0700395class ViaDefer : public Via {
396public:
397 explicit ViaDefer(Sink* sink) : Via(sink) {}
398 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
399};
400
mtklein78829242015-05-06 07:54:07 -0700401class ViaTiles : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800402public:
msarett62d3b102015-12-10 15:14:27 -0800403 ViaTiles(int w, int h, SkBBHFactory*, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700404 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800405private:
406 const int fW, fH;
407 SkAutoTDelete<SkBBHFactory> fFactory;
mtklein748ca3b2015-01-15 10:56:12 -0800408};
409
mtklein78829242015-05-06 07:54:07 -0700410class ViaSecondPicture : public Via {
mtkleinb7e8d692015-04-07 08:30:32 -0700411public:
msarett62d3b102015-12-10 15:14:27 -0800412 explicit ViaSecondPicture(Sink* sink) : Via(sink) {}
mtkleinb7e8d692015-04-07 08:30:32 -0700413 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleinb7e8d692015-04-07 08:30:32 -0700414};
415
mtklein78829242015-05-06 07:54:07 -0700416class ViaSingletonPictures : public Via {
mtkleind31c13d2015-05-05 12:59:56 -0700417public:
msarett62d3b102015-12-10 15:14:27 -0800418 explicit ViaSingletonPictures(Sink* sink) : Via(sink) {}
mtkleind31c13d2015-05-05 12:59:56 -0700419 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleind31c13d2015-05-05 12:59:56 -0700420};
421
mtklein6fbf4b32015-05-06 11:35:40 -0700422class ViaTwice : public Via {
423public:
msarett62d3b102015-12-10 15:14:27 -0800424 explicit ViaTwice(Sink* sink) : Via(sink) {}
mtklein6fbf4b32015-05-06 11:35:40 -0700425 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
426};
427
halcanary7a76f9c2016-02-03 11:53:18 -0800428class ViaMojo : public Via {
429public:
430 explicit ViaMojo(Sink* sink) : Via(sink) {}
431 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
432};
433
mtklein748ca3b2015-01-15 10:56:12 -0800434} // namespace DM
435
436#endif//DMSrcSink_DEFINED