blob: e8466aa50d45c3846d92c67f6f4f64e324eba0f7 [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
fmalitaa2b9fdf2016-08-03 19:53:36 -0700251#if defined(SK_XML)
fmalitabdf3e5c2016-09-17 07:26:26 -0700252} // namespace DM
253
254class SkSVGDOM;
255
256namespace DM {
257
fmalitaa2b9fdf2016-08-03 19:53:36 -0700258class SVGSrc : public Src {
259public:
260 explicit SVGSrc(Path path);
261
262 Error draw(SkCanvas*) const override;
263 SkISize size() const override;
264 Name name() const override;
fmalita179d8852016-08-16 14:23:29 -0700265 bool veto(SinkFlags) const override;
fmalitaa2b9fdf2016-08-03 19:53:36 -0700266
267private:
fmalitabdf3e5c2016-09-17 07:26:26 -0700268 Error ensureDom() const;
269
270 Path fPath;
271 mutable sk_sp<SkSVGDOM> fDom;
272 mutable SkScalar fScale;
fmalitaa2b9fdf2016-08-03 19:53:36 -0700273
274 typedef Src INHERITED;
275};
276#endif // SK_XML
mtklein748ca3b2015-01-15 10:56:12 -0800277/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
278
halcanary45420a92016-06-02 12:41:14 -0700279class MSKPSrc : public Src {
280public:
281 explicit MSKPSrc(Path path);
282
283 int pageCount() const override;
284 Error draw(SkCanvas* c) const override;
285 Error draw(int, SkCanvas*) const override;
286 SkISize size() const override;
287 SkISize size(int) const override;
288 Name name() const override;
289
290private:
291 Path fPath;
292 SkMultiPictureDocumentReader fReader;
293};
294
295/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
296
mtkleinad66f9b2015-02-13 15:11:10 -0800297class NullSink : public Sink {
298public:
299 NullSink() {}
300
mtklein36352bf2015-03-25 18:17:31 -0700301 Error draw(const Src& src, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700302 const char* fileExtension() const override { return ""; }
mtklein99cab4e2015-07-31 06:43:04 -0700303 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kNull, SinkFlags::kDirect }; }
mtkleinad66f9b2015-02-13 15:11:10 -0800304};
305
306
mtklein748ca3b2015-01-15 10:56:12 -0800307class GPUSink : public Sink {
308public:
bsalomon85b4b532016-04-05 11:06:27 -0700309 GPUSink(sk_gpu_test::GrContextFactory::ContextType,
310 sk_gpu_test::GrContextFactory::ContextOptions,
brianosmanb109b8c2016-06-16 13:03:24 -0700311 int samples, bool diText, SkColorType colorType, sk_sp<SkColorSpace> colorSpace,
brianosmand93c1202016-03-10 07:49:08 -0800312 bool threaded);
mtklein748ca3b2015-01-15 10:56:12 -0800313
mtklein36352bf2015-03-25 18:17:31 -0700314 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein21eaf3b2016-02-08 12:39:59 -0800315 bool serial() const override { return !fThreaded; }
mtklein36352bf2015-03-25 18:17:31 -0700316 const char* fileExtension() const override { return "png"; }
mtklein99cab4e2015-07-31 06:43:04 -0700317 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kGPU, SinkFlags::kDirect }; }
mtklein748ca3b2015-01-15 10:56:12 -0800318private:
bsalomon85b4b532016-04-05 11:06:27 -0700319 sk_gpu_test::GrContextFactory::ContextType fContextType;
320 sk_gpu_test::GrContextFactory::ContextOptions fContextOptions;
bsalomon3724e572016-03-30 18:56:19 -0700321 int fSampleCount;
322 bool fUseDIText;
323 SkColorType fColorType;
brianosmanb109b8c2016-06-16 13:03:24 -0700324 sk_sp<SkColorSpace> fColorSpace;
bsalomon3724e572016-03-30 18:56:19 -0700325 bool fThreaded;
mtklein748ca3b2015-01-15 10:56:12 -0800326};
327
328class PDFSink : public Sink {
329public:
halcanary4b656662016-04-27 07:45:18 -0700330 PDFSink(bool pdfa = false) : fPDFA(pdfa) {}
mtklein36352bf2015-03-25 18:17:31 -0700331 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700332 const char* fileExtension() const override { return "pdf"; }
mtklein99cab4e2015-07-31 06:43:04 -0700333 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
halcanary4b656662016-04-27 07:45:18 -0700334 bool fPDFA;
mtklein748ca3b2015-01-15 10:56:12 -0800335};
336
halcanary47ef4d52015-03-03 09:13:09 -0800337class XPSSink : public Sink {
338public:
339 XPSSink();
340
mtklein36352bf2015-03-25 18:17:31 -0700341 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700342 const char* fileExtension() const override { return "xps"; }
mtklein99cab4e2015-07-31 06:43:04 -0700343 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
halcanary47ef4d52015-03-03 09:13:09 -0800344};
345
reed54dc4872016-09-13 08:09:45 -0700346class PipeSink : public Sink {
347public:
348 PipeSink();
349
350 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
351 const char* fileExtension() const override { return "skpipe"; }
352 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
353};
354
mtklein748ca3b2015-01-15 10:56:12 -0800355class RasterSink : public Sink {
356public:
brianosmanb109b8c2016-06-16 13:03:24 -0700357 explicit RasterSink(SkColorType, sk_sp<SkColorSpace> = nullptr);
mtklein748ca3b2015-01-15 10:56:12 -0800358
mtklein36352bf2015-03-25 18:17:31 -0700359 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700360 const char* fileExtension() const override { return "png"; }
mtklein99cab4e2015-07-31 06:43:04 -0700361 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kRaster, SinkFlags::kDirect }; }
mtklein748ca3b2015-01-15 10:56:12 -0800362private:
brianosmanb109b8c2016-06-16 13:03:24 -0700363 SkColorType fColorType;
364 sk_sp<SkColorSpace> fColorSpace;
mtklein748ca3b2015-01-15 10:56:12 -0800365};
366
mtklein9c3f17d2015-01-28 11:35:18 -0800367class SKPSink : public Sink {
368public:
369 SKPSink();
370
mtklein36352bf2015-03-25 18:17:31 -0700371 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700372 const char* fileExtension() const override { return "skp"; }
mtklein99cab4e2015-07-31 06:43:04 -0700373 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
mtklein9c3f17d2015-01-28 11:35:18 -0800374};
375
mtklein8a4527e2015-01-31 20:00:58 -0800376class SVGSink : public Sink {
377public:
378 SVGSink();
379
mtklein36352bf2015-03-25 18:17:31 -0700380 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein36352bf2015-03-25 18:17:31 -0700381 const char* fileExtension() const override { return "svg"; }
mtklein99cab4e2015-07-31 06:43:04 -0700382 SinkFlags flags() const override { return SinkFlags{ SinkFlags::kVector, SinkFlags::kDirect }; }
mtklein8a4527e2015-01-31 20:00:58 -0800383};
384
385
mtklein748ca3b2015-01-15 10:56:12 -0800386/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
387
mtklein78829242015-05-06 07:54:07 -0700388class Via : public Sink {
389public:
msarett62d3b102015-12-10 15:14:27 -0800390 explicit Via(Sink* sink) : fSink(sink) {}
mtklein78829242015-05-06 07:54:07 -0700391 const char* fileExtension() const override { return fSink->fileExtension(); }
mtklein21eaf3b2016-02-08 12:39:59 -0800392 bool serial() const override { return fSink->serial(); }
mtklein99cab4e2015-07-31 06:43:04 -0700393 SinkFlags flags() const override {
394 SinkFlags flags = fSink->flags();
395 flags.approach = SinkFlags::kIndirect;
396 return flags;
397 }
mtklein78829242015-05-06 07:54:07 -0700398protected:
399 SkAutoTDelete<Sink> fSink;
400};
401
402class ViaMatrix : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800403public:
msarett62d3b102015-12-10 15:14:27 -0800404 ViaMatrix(SkMatrix, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700405 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800406private:
mtklein78829242015-05-06 07:54:07 -0700407 const SkMatrix fMatrix;
mtklein748ca3b2015-01-15 10:56:12 -0800408};
409
mtklein78829242015-05-06 07:54:07 -0700410class ViaUpright : public Via {
mtkleind603b222015-02-17 11:13:33 -0800411public:
msarett62d3b102015-12-10 15:14:27 -0800412 ViaUpright(SkMatrix, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700413 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleind603b222015-02-17 11:13:33 -0800414private:
mtklein78829242015-05-06 07:54:07 -0700415 const SkMatrix fMatrix;
mtkleind603b222015-02-17 11:13:33 -0800416};
417
mtklein78829242015-05-06 07:54:07 -0700418class ViaSerialization : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800419public:
msarett62d3b102015-12-10 15:14:27 -0800420 explicit ViaSerialization(Sink* sink) : Via(sink) {}
mtklein36352bf2015-03-25 18:17:31 -0700421 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800422};
423
mtklein4a34ecb2016-01-08 10:19:35 -0800424class ViaPicture : public Via {
425public:
426 explicit ViaPicture(Sink* sink) : Via(sink) {}
427 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
428};
429
reed54dc4872016-09-13 08:09:45 -0700430class ViaPipe : public Via {
431public:
432 explicit ViaPipe(Sink* sink) : Via(sink) {}
433 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
434};
435
reedbabc3de2016-07-08 08:43:27 -0700436class ViaDefer : public Via {
437public:
438 explicit ViaDefer(Sink* sink) : Via(sink) {}
439 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
440};
441
mtklein78829242015-05-06 07:54:07 -0700442class ViaTiles : public Via {
mtklein748ca3b2015-01-15 10:56:12 -0800443public:
msarett62d3b102015-12-10 15:14:27 -0800444 ViaTiles(int w, int h, SkBBHFactory*, Sink*);
mtklein36352bf2015-03-25 18:17:31 -0700445 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtklein748ca3b2015-01-15 10:56:12 -0800446private:
447 const int fW, fH;
448 SkAutoTDelete<SkBBHFactory> fFactory;
mtklein748ca3b2015-01-15 10:56:12 -0800449};
450
mtklein78829242015-05-06 07:54:07 -0700451class ViaSecondPicture : public Via {
mtkleinb7e8d692015-04-07 08:30:32 -0700452public:
msarett62d3b102015-12-10 15:14:27 -0800453 explicit ViaSecondPicture(Sink* sink) : Via(sink) {}
mtkleinb7e8d692015-04-07 08:30:32 -0700454 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleinb7e8d692015-04-07 08:30:32 -0700455};
456
mtklein78829242015-05-06 07:54:07 -0700457class ViaSingletonPictures : public Via {
mtkleind31c13d2015-05-05 12:59:56 -0700458public:
msarett62d3b102015-12-10 15:14:27 -0800459 explicit ViaSingletonPictures(Sink* sink) : Via(sink) {}
mtkleind31c13d2015-05-05 12:59:56 -0700460 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
mtkleind31c13d2015-05-05 12:59:56 -0700461};
462
mtklein6fbf4b32015-05-06 11:35:40 -0700463class ViaTwice : public Via {
464public:
msarett62d3b102015-12-10 15:14:27 -0800465 explicit ViaTwice(Sink* sink) : Via(sink) {}
mtklein6fbf4b32015-05-06 11:35:40 -0700466 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
467};
468
halcanary7a76f9c2016-02-03 11:53:18 -0800469class ViaMojo : public Via {
470public:
471 explicit ViaMojo(Sink* sink) : Via(sink) {}
472 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
473};
474
mtklein9c5052f2016-08-06 12:51:51 -0700475class ViaLite : public Via {
476public:
477 explicit ViaLite(Sink* sink) : Via(sink) {}
478 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
479};
480
mtklein748ca3b2015-01-15 10:56:12 -0800481} // namespace DM
482
483#endif//DMSrcSink_DEFINED