blob: 9d4c8239f2fc8da3613e63036ab23b72c846173e [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkLayerRasterizer_DEFINED
11#define SkLayerRasterizer_DEFINED
12
13#include "SkRasterizer.h"
14#include "SkDeque.h"
15#include "SkScalar.h"
16
17class SkPaint;
18
tfarina@chromium.org6806fe82012-10-12 14:41:39 +000019class SK_API SkLayerRasterizer : public SkRasterizer {
reed@android.com8a1c16f2008-12-17 15:59:43 +000020public:
reed@android.com8a1c16f2008-12-17 15:59:43 +000021 virtual ~SkLayerRasterizer();
rmistry@google.comfbfcd562012-08-23 18:09:54 +000022
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000023 class SK_API Builder {
24 public:
25 Builder();
26 ~Builder();
27
28 void addLayer(const SkPaint& paint) {
29 this->addLayer(paint, 0, 0);
30 }
31
32 /**
33 * Add a new layer (above any previous layers) to the rasterizer.
34 * The layer will extract those fields that affect the mask from
35 * the specified paint, but will not retain a reference to the paint
36 * object itself, so it may be reused without danger of side-effects.
37 */
38 void addLayer(const SkPaint& paint, SkScalar dx, SkScalar dy);
39
40 /**
41 * Pass queue of layers on to newly created layer rasterizer and return it. The builder
scroggo65044bf2014-06-03 13:12:51 -070042 * *cannot* be used any more after calling this function. If no layers have been added,
43 * returns NULL.
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000044 *
scroggo65044bf2014-06-03 13:12:51 -070045 * The caller is responsible for calling unref() on the returned object, if non NULL.
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000046 */
47 SkLayerRasterizer* detachRasterizer();
48
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000049 /**
50 * Create and return a new immutable SkLayerRasterizer that contains a shapshot of the
51 * layers that were added to the Builder, without modifying the Builder. The Builder
52 * *may* be used after calling this function. It will continue to hold any layers
53 * previously added, so consecutive calls to this function will return identical objects,
54 * and objects returned by future calls to this function contain all the layers in
scroggo65044bf2014-06-03 13:12:51 -070055 * previously returned objects. If no layers have been added, returns NULL.
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000056 *
57 * Future calls to addLayer will not affect rasterizers previously returned by this call.
58 *
scroggo65044bf2014-06-03 13:12:51 -070059 * The caller is responsible for calling unref() on the returned object, if non NULL.
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000060 */
61 SkLayerRasterizer* snapshotRasterizer() const;
62
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000063 private:
64 SkDeque* fLayers;
65 };
66
67#ifdef SK_SUPPORT_LEGACY_LAYERRASTERIZER_API
mike@reedtribe.org6b919c32011-04-20 11:17:30 +000068 void addLayer(const SkPaint& paint) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000069 this->addLayer(paint, 0, 0);
70 }
71
rmistry@google.comfbfcd562012-08-23 18:09:54 +000072 /** Add a new layer (above any previous layers) to the rasterizer.
73 The layer will extract those fields that affect the mask from
74 the specified paint, but will not retain a reference to the paint
75 object itself, so it may be reused without danger of side-effects.
76 */
reed@android.com8a1c16f2008-12-17 15:59:43 +000077 void addLayer(const SkPaint& paint, SkScalar dx, SkScalar dy);
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000078#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +000079
djsollen@google.comba28d032012-03-26 17:57:35 +000080 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLayerRasterizer)
reed@google.com43e9f202011-08-09 19:01:50 +000081
reed@android.com8a1c16f2008-12-17 15:59:43 +000082protected:
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000083 SkLayerRasterizer(SkDeque* layers);
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000084 SkLayerRasterizer(SkReadBuffer&);
85 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000086
87 // override from SkRasterizer
88 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
89 const SkIRect* clipBounds,
reed@google.comfdba4042012-12-18 16:57:03 +000090 SkMask* mask, SkMask::CreateMode mode) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +000091
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000092#ifdef SK_SUPPORT_LEGACY_LAYERRASTERIZER_API
93public:
94#endif
95 SkLayerRasterizer();
96
reed@android.com8a1c16f2008-12-17 15:59:43 +000097private:
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000098#ifdef SK_SUPPORT_LEGACY_LAYERRASTERIZER_API
99 SkDeque* fLayers;
100#else
101 const SkDeque* const fLayers;
102#endif
103
104 static SkDeque* ReadLayers(SkReadBuffer& buffer);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000105
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +0000106 friend class LayerRasterizerTester;
107
reed@android.com8a1c16f2008-12-17 15:59:43 +0000108 typedef SkRasterizer INHERITED;
109};
110
111#endif