blob: be7d68e638c8d9ddf1de7f213190c9b78101bda7 [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
msarett9876ac52016-06-01 14:47:18 -0700228 ColorCodecSrc(Path, Mode);
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;
237};
238
mtklein748ca3b2015-01-15 10:56:12 -0800239class SKPSrc : public Src {
240public:
mtklein8d17a132015-01-30 11:42:31 -0800241 explicit SKPSrc(Path path);
mtklein748ca3b2015-01-15 10:56:12 -0800242
mtklein36352bf2015-03-25 18:17:31 -0700243 Error draw(SkCanvas*) const override;
244 SkISize size() const override;
245 Name name() const override;
mtklein748ca3b2015-01-15 10:56:12 -0800246private:
mtklein8d17a132015-01-30 11:42:31 -0800247 Path fPath;
mtklein748ca3b2015-01-15 10:56:12 -0800248};
249
250/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
251
halcanary45420a92016-06-02 12:41:14 -0700252class MSKPSrc : public Src {
253public:
254 explicit MSKPSrc(Path path);
255
256 int pageCount() const override;
257 Error draw(SkCanvas* c) const override;
258 Error draw(int, SkCanvas*) const override;
259 SkISize size() const override;
260 SkISize size(int) const override;
261 Name name() const override;
262
263private:
264 Path fPath;
265 SkMultiPictureDocumentReader fReader;
266};
267
268/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
269
mtkleinad66f9b2015-02-13 15:11:10 -0800270class NullSink : public Sink {
271public:
272 NullSink() {}
273
mtklein36352bf2015-03-25 18:17:31 -0700274 Error draw(const Src& src, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700275 const char* fileExtension() const override { return ""; }
mtklein99cab4e2015-07-31 06:43:04 -0700276 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kNull, SinkFlags::kDirect }; }
mtkleinad66f9b2015-02-13 15:11:10 -0800277};
278
279
mtklein748ca3b2015-01-15 10:56:12 -0800280class GPUSink : public Sink {
281public:
bsalomon85b4b532016-04-05 11:06:27 -0700282 GPUSink(sk_gpu_test::GrContextFactory::ContextType,
283 sk_gpu_test::GrContextFactory::ContextOptions,
brianosmanb109b8c2016-06-16 13:03:24 -0700284 int samples, bool diText, SkColorType colorType, sk_sp<SkColorSpace> colorSpace,
brianosmand93c1202016-03-10 07:49:08 -0800285 bool threaded);
mtklein748ca3b2015-01-15 10:56:12 -0800286
mtklein36352bf2015-03-25 18:17:31 -0700287 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein21eaf3b2016-02-08 12:39:59 -0800288 bool serial() const override { return !fThreaded; }
mtklein36352bf2015-03-25 18:17:31 -0700289 const char* fileExtension() const override { return "png"; }
mtklein99cab4e2015-07-31 06:43:04 -0700290 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kGPU, SinkFlags::kDirect }; }
mtklein748ca3b2015-01-15 10:56:12 -0800291private:
bsalomon85b4b532016-04-05 11:06:27 -0700292 sk_gpu_test::GrContextFactory::ContextType fContextType;
293 sk_gpu_test::GrContextFactory::ContextOptions fContextOptions;
bsalomon3724e572016-03-30 18:56:19 -0700294 int fSampleCount;
295 bool fUseDIText;
296 SkColorType fColorType;
brianosmanb109b8c2016-06-16 13:03:24 -0700297 sk_sp<SkColorSpace> fColorSpace;
bsalomon3724e572016-03-30 18:56:19 -0700298 bool fThreaded;
mtklein748ca3b2015-01-15 10:56:12 -0800299};
300
301class PDFSink : public Sink {
302public:
halcanary4b656662016-04-27 07:45:18 -0700303 PDFSink(bool pdfa = false) : fPDFA(pdfa) {}
mtklein36352bf2015-03-25 18:17:31 -0700304 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700305 const char* fileExtension() const override { return "pdf"; }
mtklein99cab4e2015-07-31 06:43:04 -0700306 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
halcanary4b656662016-04-27 07:45:18 -0700307 bool fPDFA;
mtklein748ca3b2015-01-15 10:56:12 -0800308};
309
halcanary47ef4d52015-03-03 09:13:09 -0800310class XPSSink : public Sink {
311public:
312 XPSSink();
313
mtklein36352bf2015-03-25 18:17:31 -0700314 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700315 const char* fileExtension() const override { return "xps"; }
mtklein99cab4e2015-07-31 06:43:04 -0700316 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
halcanary47ef4d52015-03-03 09:13:09 -0800317};
318
mtklein748ca3b2015-01-15 10:56:12 -0800319class RasterSink : public Sink {
320public:
brianosmanb109b8c2016-06-16 13:03:24 -0700321 explicit RasterSink(SkColorType, sk_sp<SkColorSpace> = nullptr);
mtklein748ca3b2015-01-15 10:56:12 -0800322
mtklein36352bf2015-03-25 18:17:31 -0700323 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700324 const char* fileExtension() const override { return "png"; }
mtklein99cab4e2015-07-31 06:43:04 -0700325 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kRaster, SinkFlags::kDirect }; }
mtklein748ca3b2015-01-15 10:56:12 -0800326private:
brianosmanb109b8c2016-06-16 13:03:24 -0700327 SkColorType fColorType;
328 sk_sp<SkColorSpace> fColorSpace;
mtklein748ca3b2015-01-15 10:56:12 -0800329};
330
mtklein9c3f17d2015-01-28 11:35:18 -0800331class SKPSink : public Sink {
332public:
333 SKPSink();
334
mtklein36352bf2015-03-25 18:17:31 -0700335 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700336 const char* fileExtension() const override { return "skp"; }
mtklein99cab4e2015-07-31 06:43:04 -0700337 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
mtklein9c3f17d2015-01-28 11:35:18 -0800338};
339
mtklein8a4527e2015-01-31 20:00:58 -0800340class SVGSink : public Sink {
341public:
342 SVGSink();
343
mtklein36352bf2015-03-25 18:17:31 -0700344 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700345 const char* fileExtension() const override { return "svg"; }
mtklein99cab4e2015-07-31 06:43:04 -0700346 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
mtklein8a4527e2015-01-31 20:00:58 -0800347};
348
349
mtklein748ca3b2015-01-15 10:56:12 -0800350/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
351
mtklein78829242015-05-06 07:54:07 -0700352class Via : public Sink {
353public:
msarett62d3b102015-12-10 15:14:27 -0800354 explicit Via(Sink* sink) : fSink(sink) {}
mtklein78829242015-05-06 07:54:07 -0700355 const char* fileExtension() const override { return fSink->fileExtension(); }
mtklein21eaf3b2016-02-08 12:39:59 -0800356 bool serial() const override { return fSink->serial(); }
mtklein99cab4e2015-07-31 06:43:04 -0700357 SinkFlags flags() const override {
358 SinkFlags flags = fSink->flags();
359 flags.approach = SinkFlags::kIndirect;
360 return flags;
361 }
mtklein78829242015-05-06 07:54:07 -0700362protected:
363 SkAutoTDelete<Sink> fSink;
364};
365
366class ViaMatrix : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800367public:
msarett62d3b102015-12-10 15:14:27 -0800368 ViaMatrix(SkMatrix, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700369 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800370private:
mtklein78829242015-05-06 07:54:07 -0700371 const SkMatrix fMatrix;
mtklein748ca3b2015-01-15 10:56:12 -0800372};
373
mtklein78829242015-05-06 07:54:07 -0700374class ViaUpright : public Via {
mtkleind603b222015-02-17 11:13:33 -0800375public:
msarett62d3b102015-12-10 15:14:27 -0800376 ViaUpright(SkMatrix, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700377 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleind603b222015-02-17 11:13:33 -0800378private:
mtklein78829242015-05-06 07:54:07 -0700379 const SkMatrix fMatrix;
mtkleind603b222015-02-17 11:13:33 -0800380};
381
mtklein78829242015-05-06 07:54:07 -0700382class ViaSerialization : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800383public:
msarett62d3b102015-12-10 15:14:27 -0800384 explicit ViaSerialization(Sink* sink) : Via(sink) {}
mtklein36352bf2015-03-25 18:17:31 -0700385 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800386};
387
mtklein4a34ecb2016-01-08 10:19:35 -0800388class ViaPicture : public Via {
389public:
390 explicit ViaPicture(Sink* sink) : Via(sink) {}
391 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
392};
393
mtklein78829242015-05-06 07:54:07 -0700394class ViaTiles : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800395public:
msarett62d3b102015-12-10 15:14:27 -0800396 ViaTiles(int w, int h, SkBBHFactory*, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700397 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800398private:
399 const int fW, fH;
400 SkAutoTDelete<SkBBHFactory> fFactory;
mtklein748ca3b2015-01-15 10:56:12 -0800401};
402
mtklein78829242015-05-06 07:54:07 -0700403class ViaSecondPicture : public Via {
mtkleinb7e8d692015-04-07 08:30:32 -0700404public:
msarett62d3b102015-12-10 15:14:27 -0800405 explicit ViaSecondPicture(Sink* sink) : Via(sink) {}
mtkleinb7e8d692015-04-07 08:30:32 -0700406 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleinb7e8d692015-04-07 08:30:32 -0700407};
408
mtklein78829242015-05-06 07:54:07 -0700409class ViaSingletonPictures : public Via {
mtkleind31c13d2015-05-05 12:59:56 -0700410public:
msarett62d3b102015-12-10 15:14:27 -0800411 explicit ViaSingletonPictures(Sink* sink) : Via(sink) {}
mtkleind31c13d2015-05-05 12:59:56 -0700412 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleind31c13d2015-05-05 12:59:56 -0700413};
414
mtklein6fbf4b32015-05-06 11:35:40 -0700415class ViaTwice : public Via {
416public:
msarett62d3b102015-12-10 15:14:27 -0800417 explicit ViaTwice(Sink* sink) : Via(sink) {}
mtklein6fbf4b32015-05-06 11:35:40 -0700418 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
419};
420
halcanary7a76f9c2016-02-03 11:53:18 -0800421class ViaMojo : public Via {
422public:
423 explicit ViaMojo(Sink* sink) : Via(sink) {}
424 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
425};
426
mtklein748ca3b2015-01-15 10:56:12 -0800427} // namespace DM
428
429#endif//DMSrcSink_DEFINED